| cla_majority | R Documentation |
Trivial classifier that always predicts the most frequent class observed in the training data. Useful as a baseline.
cla_majority(attribute, slevels)
attribute |
attribute target to model building. |
slevels |
possible values for the target classification. |
returns a classification object.
data(iris)
slevels <- levels(iris$Species)
model <- cla_majority("Species", slevels)
# preparing dataset for random sampling
sr <- sample_random()
sr <- train_test(sr, iris)
train <- sr$train
test <- sr$test
model <- fit(model, train)
prediction <- predict(model, test)
predictand <- adjust_class_label(test[,"Species"])
test_eval <- evaluate(model, predictand, prediction)
test_eval$metrics
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.