1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
\name{getLearner}
\alias{getLearner}
\title{Get Learner Details from \code{\link{LearnerList}}}
\description{
Function to get information available about a specific learner in
\code{\link{LearnerList}} of the current \R session.
}
\usage{getLearner(x)}
\arguments{
\item{x}{a fitted model object.}
}
\details{
The function returns the entry in \code{\link{LearnerList}} found for
the class of the object submitted to the function.
}
\seealso{\code{\link{LearnerList}}, \code{\link{addLearner}}}
\examples{
\donttest{
library("partykit")
m <- ctree(Species ~ ., data = iris)
getLearner(m)
}
}
\keyword{stability}
\keyword{similarity}
\keyword{resampling}
|