Data Science Desktop Survival Guide
by Graham Williams |
|||||
Algorithms Setup |
20210103 Packages used in this chapter include nnet, rpart, and rattle.
Packages are loaded into the currently running R session from your
local library directories on disk. Missing packages can be installed
using utils::install.packages() within R. On Ubuntu, for
example, R packages can be installed using
wajig install r-cran-<pkgname>
.
# Load required packages from local library into the R session.
library(nnet) library(rpart) # ML: decision tree rpart().
|