| installPackages {sos} | R Documentation |
install.packages identifed in a findFn object with
Count at least minCount.
installPackages(x, minCount=sqrt(x[['Count']][1]), ...)
x |
either a character vector to be passed to
install.packages or a findFn object
|
minCount |
Install all packages identified in x[['Packages']] with
x[['Count']] exceeding minCount.
|
... |
optional arguments passed to install.packages
|
This is useful to prepare for PackageSum2.
none
Spencer Graves
## Not run:
spl <- findFn("spline", maxPages = 2)
# install all the most frequently cited packages
installPackages(spl)
# install ALL packages found
installPackages(spl, 1)
## End(Not run)