This guide is designed as a quick-stop reference of how to use some
of the more popular machine learning R packages with vivid
.
In the following examples, we use the air quality data for regression
and the iris data for classification.
The ranger
package in R is a fast implementation of
Random Forests, leveraging optimized C++ code for efficiency.
# load data
aq <- na.omit(airquality)
# build rf model
rf <- ranger(Ozone ~ ., data = aq)
# vivid
vi <- vivi(data = aq, fit = rf, response = 'Ozone')
# Load the iris dataset
data(iris)
# Train
rf <- ranger(Species ~ ., data = iris, probability = T)
vi <- vivi(data = iris, fit = rf, response = 'Species', class = 'setosa')