| cv {ipred} | R Documentation | 
Cross-validated Error Rate Estimators.
Description
Those functions are low-level functions used by errorest and
are normally not called by users.
Usage
## S3 method for class 'factor'
cv(y, formula, data, model, predict, k=10, random=TRUE, 
            strat=FALSE,
            predictions=NULL, getmodels=NULL, list.tindx = NULL, ...) 
Arguments
y | 
 response variable, either of class   | 
formula | 
 a formula object.  | 
data | 
 data frame of predictors and response described in   | 
model | 
 a function implementing the predictive model to be
evaluated. The function   | 
predict | 
 a function with arguments   | 
k | 
 k-fold cross-validation.  | 
random | 
 logical, indicates whether a random order or the given
order of the data should be used for sample splitting or not, defaults to
  | 
strat | 
 logical, stratified sampling or not, defaults to   | 
predictions | 
 logical, return the prediction of each observation.  | 
getmodels | 
 logical, return a list of models for each fold.  | 
list.tindx | 
 list of numeric vectors, indicating which observations are included in each cross-validation sample.  | 
... | 
 additional arguments to   | 
Details
See errorest.