| print.train {caret} | R Documentation |
Print the results of a train object.
## S3 method for class 'train'
print(x,
printCall = FALSE,
details = FALSE,
selectCol = FALSE,
...)
x |
an object of class |
printCall |
a logical to print the call at the top of the output |
details |
a logical to show print or summary methods for the
final model. In some cases (such as |
selectCol |
a logical to a column with a star next to the final model |
... |
options passed to |
The table of complexity parameters used, their resampled performance and a flag for which rows are optimal.
A data frame with the complexity parameter(s) and performance (invisibly).
Max Kuhn
## Not run:
data(iris)
TrainData <- iris[,1:4]
TrainClasses <- iris[,5]
library(klaR)
rdaFit <- train(TrainData, TrainClasses, method = "rda",
control = trainControl(method = "cv"))
print(rdaFit)
## End(Not run)