Modeler-class {Modeler} | R Documentation |
Class "Modeler"
Description
The Modeler
class represents (parametrized but not
yet fit) statistical models that can predict binary outcomes.
Objects from the Class
Objects can be created by calls to the constructor fuinction, Modeler
.
Slots
learnFunction
:Object of class
"function"
that is used to fit the model to a data set. Seelearn
for details.predictFunction
:Object of class
"function"
that is used to make predictions on new data from a fitted model. Seepredict
for details.paramList
:Object of class
"list"
that contains parameters that are specific for one type of classifier.
Methods
No methods are defined with class "Modeler" in the signature. The only
function that can be applied to a Modeler
object is
learn
, which has not been made into a generic funtion.
Author(s)
Kevin R. Coombes <krc@silicovore.com>
See Also
See the description of the FittedModel-class
for details
about the kinds of objects produced by learn
.
Examples
showClass("Modeler")