Description Usage Arguments Details Value See Also Examples
Computes a confidence interval for one or more parameters in a
unvariateML
object.
1 2 |
object |
An object of class |
parm |
Vector of strings; the parameters to calculate a confidence
interval for. Each parameter must be a member of |
level |
The confidence level. |
Nreps |
Number of bootstrap iterations. Passed to
|
... |
Additional arguments passed to |
confint.univariateML
is a wrapper for bootstrapml()
that
computes confidence intervals for the main parameters of object
.
The main parameters of object
are the members of
names(object)
. For instance, the main parameters of an object
obtained from mlnorm
are mean
and sd
. The
confidence intervals are parametric bootstrap percentile intervals
with limits (1-level)/2
and 1 - (1-level)
.
A matrix or vector with columns giving lower and upper confidence
limits for each parameter in parm
.
stats::confint()
for the generic function and
bootstrapml()
for the function used to calculate the
confidence intervals.
1 2 3 4 | object <- mlinvgauss(airquality$Wind)
confint(object) # 95% confidence interval for mean and shape
confint(object, "mean") # 95% confidence interval for the mean parameter
# confint(object, "variance") # Fails since 'variance isn't a main parameter.
|
2.5% 97.5%
mean 9.304174 10.67991
shape 45.188022 69.93462
2.5% 97.5%
9.278179 10.661931
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.