January 2010
Beginner
634 pages
19h 50m
English
Content preview from R in a NutshellBecome an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,







O’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
I wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
I’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
I'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Listing Packages in Local Libraries
To get the list of packages loaded by default, you can use the
getOption command to
check the value of the defaultPackages value:
> getOption("defaultPackages")
[1] "datasets" "utils" "grDevices" "graphics" "stats"
[6] "methods"This command omits the base package; the
base package implements many key
features of the R language and is always loaded.
If you would like to see the list of currently loaded packages,
you can use the .packages command
(note the parentheses around the outside):
> (.packages()) [1] "stats" "graphics" "grDevices" "utils" "datasets" "methods" [7] "base"
To show all packages available, you can use the all.available option
with the packages command:
> (.packages(all.available=TRUE)) [1] "KernSmooth" "MASS" "base" "bitops" "boot" [6] "class" "cluster" "codetools" "datasets" "foreign" [11] "grDevices" "graphics" "grid" "hexbin" "lattice" [16] "maps" "methods" "mgcv" "nlme" "nnet" [21] "rpart" "spatial" "splines" "stats" "stats4" [26] "survival" "tcltk" "tools" "utils"
You can also enter the library() command with no arguments and a new
window will pop up showing you the set of available
packages.
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Read now
Unlock full access