The Modeler class represents (parametrized but not
yet fit) statistical models that can predict binary outcomes.
Arguments
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. See learn for details.
predictFunction:
Object of class "function" that is
used to make predictions on new data from a fitted model. See
predict,FittedModel-method 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
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.