simulation {ib} | R Documentation |
Method for simulating responses from an object.
simulation(object, control = list(...), ...)
## S4 method for signature 'Ib'
simulation(object, control = list(...), ...)
object |
an object of class union "Ib" |
control |
a control list |
... |
further argument to pass |
simulated responses.
## 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 <- simulate(pois_fit, nsim = 100)