Can anyone tell me what is the difference between base and recommended packages.
If there is link where base and recommended packages are mentioned please provide the links.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The difference actually comes from R Core and the way the R code is organised, for example in the upstream SVN repository.
In
src/library/, you have all ‘base’ packages:And none of these are on CRAN — they only exist as part of ‘base R’.
And you have a directory
src/library/Recommendedwhich by default is empty, but can be filled by using a helper script (tools/rsync-recommended) to get the list of Recommended packages off CRAN from a special (versioned) directory. For R version 3.3.3, it isCRAN/src/contrib/3.3.3/Recommended/ (with the CRAN part being your default mirror). It contains
Edit 2016-09-06: Added
utilsto first set.