Is there a way to install packages in R without including sample data?
I can see that for R CMD INSTALL you can pass --no-data, but I can't seem to find a way to add this option to the install.packages()
function.
My .proj file looks like
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: Sweave
LaTeX: pdfLaTeX
I've tried to add
PackageInstallArgs: --no-multiarch --without-keep.source --no-data
without luck.