On Tue, Mar 19, 2013 at 2:36 PM, Saptarshi Guha <saptarshi.g...@gmail.com> wrote: > Hello, > > Is there an R function that tells me the packages that come with R e.g. > c("base","boot","methods","mgcv",...) >
If you use the default configuration of R that makes use of a user library then this will show the packages that come with R: .libPaths("") library() You may wish to restart a new session after that to reset .libPaths() properly. ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.