perry-methods {perryExamples} | R Documentation |
Resampling-based prediction error for fitted models
Description
Estimate the prediction error of a fitted model via (repeated) K
-fold
cross-validation, (repeated) random splitting (also known as random
subsampling or Monte Carlo cross-validation), or the bootstrap. Methods are
available for least squares fits computed with lm
as
well as for the following robust alternatives: MM-type models computed with
lmrob
and least trimmed squares fits computed with
ltsReg
.
Usage
## S3 method for class 'lm'
perry(
object,
splits = foldControl(),
cost = rmspe,
ncores = 1,
cl = NULL,
seed = NULL,
...
)
## S3 method for class 'lmrob'
perry(
object,
splits = foldControl(),
cost = rtmspe,
ncores = 1,
cl = NULL,
seed = NULL,
...
)
## S3 method for class 'lts'
perry(
object,
splits = foldControl(),
fit = c("reweighted", "raw", "both"),
cost = rtmspe,
ncores = 1,
cl = NULL,
seed = NULL,
...
)
Arguments
object |
the fitted model for which to estimate the prediction error. |
splits |
an object of class |
cost |
a cost function measuring prediction loss. It should expect
the observed values of the response to be passed as the first argument and
the predicted values as the second argument, and must return either a
non-negative scalar value, or a list with the first component containing
the prediction error and the second component containing the standard
error. The default is to use the root mean squared prediction error
for the |
ncores |
a positive integer giving the number of processor cores to be
used for parallel computing (the default is 1 for no parallelization). If
this is set to |
cl |
a parallel cluster for parallel computing as generated by
|
seed |
optional initial seed for the random number generator (see
|
... |
additional arguments to be passed to the prediction loss
function |
fit |
a character string specifying for which fit to estimate the
prediction error. Possible values are |
Value
An object of class "perry"
with the following components:
pe
a numeric vector containing the estimated prediction errors. For the
"lm"
and"lmrob"
methods, this is a single numeric value. For the"lts"
method, this contains one value for each of the requested fits. In case of more than one replication, those are average values over all replications.se
a numeric vector containing the estimated standard errors of the prediction loss. For the
"lm"
and"lmrob"
methods, this is a single numeric value. For the"lts"
method, this contains one value for each of the requested fits.reps
a numeric matrix containing the estimated prediction errors from all replications. For the
"lm"
and"lmrob"
methods, this is a matrix with one column. For the"lts"
method, this contains one column for each of the requested fits. However, this is only returned in case of more than one replication.splits
an object giving the data splits used to estimate the prediction error.
y
the response.
yHat
a list containing the predicted values from all replications.
call
the matched function call.
Note
The perry
methods extract the data from the fitted model and
call perryFit
to perform resampling-based prediction
error estimation.
Author(s)
Andreas Alfons
See Also
Examples
## load data
data("Bundesliga")
n <- nrow(Bundesliga)
## fit linear model
Bundesliga$logMarketValue <- log(Bundesliga$MarketValue)
fit <- lm(logMarketValue ~ Contract + Matches + Goals + Assists,
data=Bundesliga)
## perform K-fold cross-validation
perry(fit, foldControl(K = 5, R = 10), seed = 1234)
## perform random splitting
perry(fit, splitControl(m = n/3, R = 10), seed = 1234)
## perform bootstrap prediction error estimation
# 0.632 estimator
perry(fit, bootControl(R = 10, type = "0.632"), seed = 1234)
# out-of-bag estimator
perry(fit, bootControl(R = 10, type = "out-of-bag"), seed = 1234)