caret (version 5.05.004)

print.train: Print Method for the train Class

Description

Print the results of a train object.

Usage

## S3 method for class 'train':
print(x, 
      digits = min(3, getOption("digits") - 3), 
      printCall = FALSE, 
      details = FALSE, 
      selectCol = FALSE,
      ...)

Arguments

Value

  • A data frame with the complexity parameter(s) and performance (invisibly).

Details

The table of complexity parameters used, their resampled performance and a flag for which rows are optimal.

See Also

train

Examples

Run this code
data(iris)
TrainData <- iris[,1:4]
TrainClasses <- iris[,5]

library(klaR)
rdaFit <- train(TrainData, TrainClasses, "rda",
   control = trainControl(method = "cv"))
print(rdaFit)

Run the code above in your browser using DataLab