Displaying 3 results from an estimated 3 matches for "r_installall".
2005 Sep 01
1
controlling where *.Rout gets printed. Possible?
...ll
desirable R packages is nearing an end! The only question I have now is
this: How can I control where the system prints the *.Rout file that is
created automatically when the R batch program runs. In "man R" I don't
find any information about it. When the cron job runs "R_installAll.sh"
(see below), I'd like to re-direct it to someplace that ordinary users
can read.
Here's the shell script I will schedule with cron
------------R_installAll.sh ----------
#!/bin/bash
R CMD BATCH /usr/local/bin/R_installAll.R
--------------------------------------
And here's...
2005 Aug 19
4
Advice about system for installing & updating all R package in a Linux Lab?
...e. Then I happened upon this page
http://support.stat.ucla.edu/view.php?supportid=30
about installing all R packages from CRAN. That did not run as it was,
but after some fiddling I arrived at the following script, which does
run and it builds many packages and reports failures on the rest:
#R_installAll.R
options(repos = "http://lib.stat.cmu.edu/R/CRAN/")
update.packages(ask=F)
x <- packageStatus(repositories="http://cran.r-project.org/src/contrib")
st <- x$avai["Status"]
install.packages(rownames(st)[which(st$Status=="not installed")],
dependencies=T...
2005 Aug 31
0
Advice about system for installing & updating all R packa ge in a Linux Lab?
...in the current R-News.
>
> > about installing all R packages from CRAN. That did not
> run as it was,
> > but after some fiddling I arrived at the following script,
> which does
> > run and it builds many packages and reports failures on the rest:
> >
> > #R_installAll.R
> > options(repos = "http://lib.stat.cmu.edu/R/CRAN/")
> > update.packages(ask=F)
> > x <-
> packageStatus(repositories="http://cran.r-project.org/src/contrib")
> > st <- x$avai["Status"]
> > install.packages(rownames(st)[which...