Data Science Desktop Survival Guide
by Graham Williams |
|||||
Attaching a Package |
base::search()
Notice that a collection of packages are installed by default among a couple of other special objects (.GlobalEnv and Autoloads). A package is attached using the base::library() command. The base::library() command takes an argument to identify the package= we wish to attach. |
# Load packages from the local library into the R session.
library(package=dplyr) library(package=rattle) Running these two commands will affect the search path by placing these packages early within the path. |
base::search()
|