The function does the bootstrap for parameters of models and returns covariance matrix together with the original bootstrapped data.
coefbootstrap(object, nsim = 1000, size = floor(0.75 * nobs(object)),
replace = FALSE, prob = NULL, parallel = FALSE, method = c("dsr",
"cr"), ...)# S3 method for lm
coefbootstrap(object, nsim = 1000, size = floor(0.75 *
nobs(object)), replace = FALSE, prob = NULL, parallel = FALSE,
method = c("dsr", "cr"), ...)
# S3 method for alm
coefbootstrap(object, nsim = 1000, size = floor(0.75 *
nobs(object)), replace = FALSE, prob = NULL, parallel = FALSE,
method = c("dsr", "cr"), ...)
Class "bootstrap" is returned, which contains:
vcov - the covariance matrix of parameters;
coefficients - the matrix with the bootstrapped coefficients.
nsim - number of runs done;
size - the sample size used in the bootstrap;
replace - whether the sampling was done with replacement;
prob - a vector of probability weights used in the process;
parallel - whether the calculations were done in parallel;
model - the name of the model used (the name of the function);
timeElapsed - the time that was spend on the calculations.
The model estimated using either lm, or alm, or glm.
Number of iterations (simulations) to run.
A non-negative integer giving the number of items to choose (the sample size),
passed to sample function in R. If not provided and model contains ARIMA
components, this value will be selected at random on each iteration. This is only used for
method="cr"
.
Should sampling be with replacement? Also, passed to sample
function in R. Only used in method="cr"
.
A vector of probability weights for obtaining the elements of the vector
being sampled. This is passed to the sample as well. Only used with
method="cr"
.
Either a logical, specifying whether to do the calculations in parallel, or the number, specifying the number of cores to use for the parallel calculation.
Which bootstrap method to use. Currently two options are supported:
"dsr"
- "Data Shape Replication, implemented in dsrboot;
"cr"
- "Case Resampling", basic bootstrap that assumes that observations are
independent (not suitable for models with ARIMA elements).
Parameters passed to the dsrboot function.
Ivan Svetunkov, ivan@svetunkov.ru
The function applies the same model as in the provided object on a smaller sample in order to get the estimates of parameters and capture the uncertainty about them. This is a simple implementation of the case resampling, which assumes that the observations are independent.
alm
# An example with ALM
ourModel <- alm(mpg~., mtcars, distribution="dlnorm", loss="HAM")
# A fast example with 10 iterations. Use at least 100 to get better results
coefbootstrap(ourModel, nsim=10)
Run the code above in your browser using DataLab