confint.clusbootglm {ClusterBootstrap} | R Documentation |
Confidence intervals for cluster bootstrap model parameters
Description
Computes confidence intervals for one or more parameters in a fitted GLM with the cluster bootstrap.
Usage
## S3 method for class 'clusbootglm'
confint(object, parm = "all", level = 0.95, interval.type = "BCa", ...)
Arguments
object |
object of class |
parm |
a specification of which parameters are to be given confidence intervals, either a vector of numbers or a vector of names. Defaults to all parameters. |
level |
the required confidence level |
interval.type |
type of confidence level. Options are |
... |
other arguments. |
Author(s)
Mathijs Deen
Examples
## Not run:
data(opposites)
cbglm.1 <- clusbootglm(SCORE~Time*COG,data=opposites,clusterid=Subject)
confint(cbglm.1,parm=c("Time","COG"), level=.90, interval.type="percentile")
## End(Not run)
[Package ClusterBootstrap version 1.1.2 Index]