getLearner {stablelearner} | R Documentation |
LearnerList
Function to get information available about a specific learner in
LearnerList
of the current R session.
getLearner(x)
x |
a fitted model object. |
The function returns the entry in LearnerList
found for
the class of the object submitted to the function.
library("partykit") m <- ctree(Species ~ ., data = iris) getLearner(m)