summary.Ensemble: Gives a summary of the models used in the Ensemble object

Description Usage Arguments Value Examples

View source: R/Ensembling.R

Description

Gives a summary of the models used in the Ensemble object

Usage

1
2
## S3 method for class 'Ensemble'
summary(object, ...)

Arguments

object

The Ensemble object to be summarized.

...

Other arguments, if needed

Value

NULL, only prints out

Examples

1
2
3
4
5
6
7
# prepare a binary classification dataset
iris <- PrepareIris()
# create the models
comp <- GetModelComparisons(iris[,1:4], iris[,5])
# use the models in the comparison to form a one model Ensemble
ensem <- Ensemble(comp$model.list, "majorityWeight", iris[,1:4], iris[,5])
summary(ensem)

orionw/BestModel documentation built on Aug. 17, 2019, 7:29 p.m.