Data Science Desktop Survival Guide
by Graham Williams |
|||||
Packages and Libraries |
# Install a package from a CRAN repository.
install.packages(pkgs="dplyr") Once a package is installed we can access the commands provided by that package by prefixing the command name with the package name as in ggplot2::qplot(). This is to say that qplot() is provided by the ggplot2 package. |