search for: patched_2010

Displaying 3 results from an estimated 3 matches for "patched_2010".

Did you mean: patched_2017
2010 Feb 19
1
Building R fails
I'm trying to build R-patched_2010-02-17.tar.gz, 'make' ends with make[2]: Entering directory `/usr/local/src/R/R-patched/src/library/Recommended' begin installing recommended package boot Loading required package: survival Error: package 'survival' could not be loaded In addition: Warning message: In library(p...
2010 Dec 30
1
problem building R 2.12.1 64-bit on Windows 7
...that I have included but don't know if it is relevant. ) If I follow the same set up but choose a 32-bit build it runs successfully to completion and I can run R. I have tried this on two different machines running 64-bit Windows with the released R 2.12.1. The error is the same when using R-patched_2010-12-27_r53886. I'm sorry if this is something obvious, but I believe I've followed the instructions carefully and do not know what I might be doing wrong. As far as I can tell I should not need to modify BINPREF64 or SYMPAT64 if use Rtools 2.12. Is that correct? A description of the set u...
2010 Jan 19
1
Model frame when LHS is cbind (PR#14189)
...m <- lm(cbind(qsec,log(hp),sqrt(disp))~wt, data=mtcars) model.frame(fm)[[1]] # ugh, missing column names The model frame is useful for many things, even more so when all column names are legible. Therefore I propose adding two new lines to model.frame.default() between lines 371 and 372 in R-patched_2010-01-12/src/library/stats/R/models.R: varnames <- sapply(vars, deparse, width.cutoff = 500)[-1L] variables <- eval(predvars, data, env) NEW if (is.matrix(variables[[1L]])) NEW colnames(variables[[1L]]) <- as.character(formula[[2L]])[-1L] if (is.null(rownames) && (r...