Description Usage Arguments Value Examples
View source: R/ModelGeneration.R
Want to easily compare Machine Learning models? Want to just summarize them in a pretty graph without having to go to all the work? This package consolidates this by allowing you to use your pre-built models to make easy graphics or to build all those models for you.
This function take pre-built models, and puts them into a ModelComparison object.
| 1 | ModelComparison(model.list, multi.class)
 | 
| model.list | The training data to build the models. | 
| multi.class | A boolean of whether the models predict a multi-outcome response | 
A ModelComparison object.
| 1 2 3 | # models <- list(model1, model2, model3)
# names(models) <- c("NeuralNet", "K-NN", "SVM")
# comp <- ModelComparison(models, F)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.