Re: [R] [DKIM] Batch Installer for R [SEC=UNCLASSIFIED]

2016-04-01 Thread Tobias Knuth
w version > load("Rpackages_R3.1.0") > > for (p in setdiff(packages, installed.packages()[,"Package"])) > install.packages(p) > > Hope this helps. > > Jin > > -----Original Message- > From: R-help [mailto:r-help-boun...@r-project.org] On Behalf

[R] Batch Installer for R

2016-03-31 Thread Tobias Knuth
Hi everyone, in Python, you can run pip install -r filename to install all packages listed in the file. Is there something similar to R? If not, isn't it quite easy to write? For me, it would be much easier to work on projects with other people if I could just install all dependencies with one li