Description Usage Arguments Value See Also Examples
Generic methods to train classifiers
1 | trainWrapper(wrapper, train, trainClass, ...)
|
wrapper |
the wrapper instance |
train |
|
trainClass |
a vector containing the class column for |
... |
further arguments for |
A model which is predict
callable.
1 2 3 4 | myWrapper <- structure(list(), class="C50Wrapper")
trainWrapper.C50Wrapper <- function(wrapper, train, trainClass){
C50::C5.0(train, trainClass)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.