Method for generating parametric bootstrap estimates from a fitted model.
bootstrap(object, B = 1000, extra_param = FALSE, ...)
object | an |
---|---|
B | an |
extra_param | if |
... | additional optional arguments to pass to |
A matrix
p (size of parameter) times B of bootstrapped estimates.
This method is a simple wrapper around the ib
method
where number of iterations is set to 1.
Samuel Orso
## bootstrap poisson regression counts <- c(18,17,15,20,10,20,25,13,12) outcome <- gl(3,1,9) treatment <- gl(3,3) pois_fit <- glm(counts ~ outcome + treatment, family = poisson()) ## make 100 paramtric bootstrap replicates boot_dist <- bootstrap(pois_fit, B = 100)