optional data argument (useful/needed when data are not in an available environment).
...
additional arguments to be passed to function boot
Details
This function is inspired by Boot, which does not
seem to work with ‘gls’ or ‘lme’ objects. This function makes multiple copies
of the original data, so it can be very hungry in terms of memory use, but
I do not believe this to be a big problem given the models we typically fit.
# NOT RUN {require(nlme)
require(car)
data(Orange)
fm1 <- lme(circumference ~ age, random = ~ 1 | Tree, data = Orange)
fm1.bt <- boot_lme(fm1, R = 50)
hist(fm1.bt)
# }# NOT RUN {# }