I'm not sure if the problem is actually with R but thought I should
report this anyway.
After Peter's email regarding the R 3.5.2 release today, I installed the
Windows version right away (directly from CRAN and not from a mirror).
Unfortunately, my institute's AV sofware TrendMicro OfficeSca
Dear Roland,
quite surprising, as online scans of TrendMicro turn up completely clean.
It looks like a false positive, which you can report to TrendMicro as
explained here :
https://success.trendmicro.com/solution/1115668-preventing-behavior-monitoring-false-detections-in-officescan#collapse1
On
On Thu, Dec 20, 2018 at 2:52 PM Roland Fuß wrote:
>
> I'm not sure if the problem is actually with R but thought I should
> report this anyway.
>
> After Peter's email regarding the R 3.5.2 release today, I installed the
> Windows version right away (directly from CRAN and not from a mirror).
>
>
Looking at the code for `R CMD INSTALL` [1] it looks like
`--configure-args` is not used on Windows, so there is not a way to pass
arguments to the `configure.win` script like there is for `configure`.
Is this lack intentional or simply an oversight because support for
configure.win was added late
When formula() is applied to the output of model.frame() it ignores the
formula in the model.frame's 'terms' attribute:
> d <- data.frame(A=log(1:6), B=LETTERS[rep(1:2,c(2,4))], C=1/(1:6),
D=rep(letters[25:26],c(4,2)), Y=1:6)
> m0 <- model.frame(data=d, Y ~ A:B)
> formula(m0)
Y ~ A + B
>
> William Dunlap via R-devel
> on Thu, 20 Dec 2018 15:09:56 -0800 writes:
> When formula() is applied to the output of model.frame()
> it ignores the formula in the model.frame's 'terms'
> attribute:
>> d <- data.frame(A=log(1:6), B=LETTERS[rep(1:2,c(2,4))],
>> C=