May 2019
Beginner to intermediate
266 pages
5h 57m
English
R packages include a bundle of code that is designed for a specific purpose, and can be reused by a group of developers. Packages include information of data, documentation, and tests. It is very simple to download a particular package and start using its features.
The following set of commands are used for installation and inclusion of the package in the required workspace:
> install.packages("ggplot2")> library(ggplot2)
Alternatively, the following can be used:
> require(ggplot2)
Read now
Unlock full access