Confint {Rcmdr} | R Documentation |
Except for glm objects, where a method is provided that provides intervals optionally
based on the Wald statistic, this generic function simply calls confint
in the stats
package via its default method.
Confint(object, parm, level = 0.95, ...) ## S3 method for class 'glm': Confint(object, parm, level=0.95, type=c("LR", "Wald"), ...)
object |
a model object. |
parm |
which parameters to use, defaults to all. |
level |
level of confidence, defaulting to 0.95. |
type |
for a glm object, confidence interval based on the profile likelihood (the default) or the Wald statistic. |
... |
arguments to be passed down to methods. |
dependent upon the method called.
John Fox jfox@mcmaster.ca