Assuming you haven't removed any core packages you could look at
the "Priority" column in the output of installed.packages(). I think
all
the ones marked "base" or "recommended" are shipped with R:
> i <- installed.packages()
> i[ i[,"Priority"] %in%
c("base","recommended"), c("Package",
"Priority")]
Package Priority
base "base" "base"
boot "boot" "recommended"
...
mgcv "mgcv" "recommended"
...
tools "tools" "base"
utils "utils" "base"
Bill Dunlap
Spotfire, TIBCO Software
wdunlap tibco.com
> -----Original Message-----
> From: r-help-bounces at r-project.org [mailto:r-help-bounces at
r-project.org] On Behalf
> Of Saptarshi Guha
> Sent: Tuesday, March 19, 2013 11:37 AM
> To: R-help at r-project.org
> Subject: [R] List of default packages (that come with R)
>
> Hello,
>
> Is there an R function that tells me the packages that come with R e.g.
>
c("base","boot","methods","mgcv",...)
>
> Thank you
> Saptarshi
>
> [[alternative HTML version deleted]]
>
> ______________________________________________
> R-help at 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.