> 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"
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
__
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
> 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;
> 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