Re: [Rd] formatting raw vectors with names

2017-11-09 Thread Martin Maechler
> Lukas Stadler > on Thu, 9 Nov 2017 16:34:49 +0100 writes: > I think there’s a bug concerning the formatting of raw vectors with names: >> structure(as.raw(1:3), .Names = c("a", "", "c")) > a c > 01 02 03 >> structure(1:3, .Names = c("a", "", "c"

[Rd] R 3.4.3 scheduled for November 30

2017-11-09 Thread Peter Dalgaard
Full schedule available on developer.r-project.org (pending auto-update from SVN) -- Peter Dalgaard, Professor, Center for Statistics, Copenhagen Business School Solbjerg Plads 3, 2000 Frederiksberg, Denmark Phone: (+45)38153501 Office: A 4.23 Email: pd@cbs.dk Priv: pda...@gmail.com __

[Rd] formatting raw vectors with names

2017-11-09 Thread Lukas Stadler
I think there’s a bug concerning the formatting of raw vectors with names: > structure(as.raw(1:3), .Names = c("a", "", "c")) a c 01 02 03 > structure(1:3, .Names = c("a", "", "c")) a c 123 The problem is that EncodeRaw does not honor the requested wid

Re: [Rd] check does not check that package examples remove tempdir()

2017-11-09 Thread danlrobertson89
> tempdir(). I think it happens because the forked process shares the > value of tempdir() with the parent process and removes it when it > exits. This is very likely the case. Pretty much the entire library can be summed up by bfork_fork, which is the following. SEXP res; pid_t pid;

Re: [Rd] New vcov(*, complete=TRUE) etc -- coef() vs coef()

2017-11-09 Thread Martin Maechler
> Fox, John > on Tue, 7 Nov 2017 22:09:03 + writes: > Dear Martin, I think that your plan makes sense. It's too > bad that aov() behaved differently in this respect from > lm(), and thus created more work, but it's not be a bad > thing that the difference is now ex