R/extractPrediction.R
, R/extractProb.R
, R/predict.train.R
predict.train.Rd
These functions can be used for a single train
object or to loop
through a number of train
objects to calculate the training and test
data predictions and class probabilities.
extractPrediction(models, testX = NULL, testY = NULL, unkX = NULL, unkOnly = !is.null(unkX) & is.null(testX), verbose = FALSE) extractProb(models, testX = NULL, testY = NULL, unkX = NULL, unkOnly = !is.null(unkX) & is.null(testX), verbose = FALSE) # S3 method for train predict(object, newdata = NULL, type = "raw", na.action = na.omit, ...)
models | a list of objects of the class |
---|---|
testX | an optional set of data to predict |
testY | an optional outcome corresponding to the data given in
|
unkX | another optional set of data to predict without known outcomes |
unkOnly | a logical to bypass training and test set predictions. This is useful if speed is needed for unknown samples. |
verbose | a logical for printing messages |
object | For |
newdata | an optional set of data to predict on. If |
type | either "raw" or "prob", for the number/class predictions or class probabilities, respectively. Class probabilities are not available for all classification models |
na.action | the method for handling missing data |
... | only used for |
For predict.train
, a vector of predictions if type = "raw"
or
a data frame of class probabilities for type = "prob"
. In the latter
case, there are columns for each class.
For predict.list
, a list results. Each element is produced by
predict.train
.
For extractPrediction
, a data frame with columns:
the observed training and test data
predicted values
the type of model used to predict
the names of
the objects within models
. If models
is an un-named list, the
values of object
will be "Object1", "Object2" and so on
"Training", "Test" or "Unknown" depending on what was specified
These functions are wrappers for the specific prediction functions in each
modeling package. In each case, the optimal tuning values given in the
tuneValue
slot of the finalModel
object are used to predict.
To get simple predictions for a new data set, the predict
function
can be used. Limits can be imposed on the range of predictions. See
trainControl
for more information.
To get predictions for a series of models at once, a list of
train
objects can be passes to the predict
function and
a list of model predictions will be returned.
The two extraction functions can be used to get the predictions and observed
outcomes at once for the training, test and/or unknown samples at once in a
single data frame (instead of a list of just the predictions). These objects
can then be passes to plotObsVsPred
or
plotClassProbs
.
Kuhn (2008), ``Building Predictive Models in R Using the caret'' (http://www.jstatsoft.org/article/view/v028i05/v28i05.pdf)
if (FALSE) { knnFit <- train(Species ~ ., data = iris, method = "knn", trControl = trainControl(method = "cv")) rdaFit <- train(Species ~ ., data = iris, method = "rda", trControl = trainControl(method = "cv")) predict(knnFit) predict(knnFit, type = "prob") bothModels <- list(knn = knnFit, tree = rdaFit) predict(bothModels) extractPrediction(bothModels, testX = iris[1:10, -5]) extractProb(bothModels, testX = iris[1:10, -5]) }