confint2 {quest} | R Documentation |
Confidence Intervals from Statistical Information
Description
confint2
is a generic function for creating confidence intervals from
various statistical information (e.g., confint2.default
) or
object classes (e.g., confint2.boot
). It is an alternative to
the original confint
generic function in the stats
package.
Usage
confint2(obj, ...)
Arguments
obj |
object of a particular class (e.g., "boot") or the first argument
in the default method (e.g., the |
... |
additional arguments specific to the particular method of |
Value
depends on the particular method of confint2
, but usually a data.frame
with a column for the parameter estimate ("est"), standard error ("se"),
lower bound of the confidence interval ("lwr"), and upper bound of the confidence interval ("upr").
See Also
confint2.default
for the default method,
confint2.boot
for the boot
method,