lmboot
lmboot
This package is useful to users who wish to perform bootstrap in linear models. The package contains functions to create
the sampling distributions for linear model parameters using either efficient or robust bootstrap methods.
As classified by
Liu and Singh (1992), efficient bootstrap types include the residual bootstrap (residual.boot()
). These types of
bootstrap are useful when it is not reasonable to assume that errors come from a normal distribution, but you may make other
classical assumptions: errors are independent, have mean 0, and have constant variance.
Robust bootstrap types include the paired bootstrap (paired.boot
), wild bootstrap (wild.boot
), and the jackknife (jackknife
).
These types of bootstrap are useful when it is not reasonable to assumet that errors have constant variance, but you may make other
classical assumptions: errors are independent and have mean 0.
The package also contains a function for Bayesian bootstrap (bayesian.boot
and a function to perform bootstrap in the
ANOVA hypothesis test (ANOVA.boot
). The ANOVA bootstrap function has options to use the wild or residual bootstrap techniques
and has been tested to work in 2-way ANOVA. Its functionality allows K-way ANOVA, however those capabilities have not been fully tested.
Currently, the user must manipulate the output of the function to conduct hypothesis tests and create
confidence intervals for the predictor coefficients. More convenient/streamlined output is expected
in future package versions.