Bootstrap Error Rate Estimators
bootest.RdThose functions are low-level functions used by errorest and
are normally not called by users.
Usage
bootest(y, ...)
# S3 method for class 'factor'
bootest(y, formula, data, model, predict, nboot=25,
bc632plus=FALSE, list.tindx = NULL, predictions = FALSE,
both.boot = FALSE, ...)Arguments
- y
the response variable, either of class
factor(classification),numeric(regression) orSurv(survival).- formula
a formula object.
- data
data frame of predictors and response described in
formula.- model
a function implementing the predictive model to be evaluated. The function
modelcan either return an object representing a fitted model or a function with argumentnewdatawhich returns predicted values. In this case, thepredictargument toerrorestis ignored.- predict
a function with arguments
objectandnewdataonly which predicts the status of the observations innewdatabased on the fitted model inobject.- nboot
number of bootstrap replications to be used.
- bc632plus
logical. Should the bias corrected version of misclassification error be computed?
- predictions
logical, return a matrix of predictions. The ith column contains predictions of the ith out-of-bootstrap sample and 'NA's corresponding to the ith bootstrap sample.
- list.tindx
list of numeric vectors, indicating which observations are included in each bootstrap sample.
- both.boot
logical, return both (bootstrap and 632plus) estimations or only one of them.
- ...
additional arguments to
model.
Details
See errorest.