Description Usage Arguments Value Examples
Computes confidence intervals for one or more parameters in a fitted model.
1 2 3 4 5 |
object |
an object class 'izip' or 'tsizip', obtained from a call to |
parm |
a specification of which parameters are to be given confidence intervals, either a vector of numbers or a vector of names (comparing to those provided by |
level |
the confidence level required. |
... |
other arguments passed to or from other methods (currently unused). |
A matrix (or vector) with columns giving lower and upper confidence limits for each parameter. These will be labelled as (1-level)/2 and 1 - (1-level)/2 in % (by default 2.5% and 97.5%).
1 2 3 4 5 6 7 8 9 | data(bioChemists)
M_bioChem <- glm.izip(art ~ ., data = bioChemists)
confint(M_bioChem)
# 90% CI for 'ment' only
confint(M_bioChem, parm = "ment", level = 0.9)
data(arson)
M_arson <- tsglm.izip(arson ~ 1, past_mean_lags = 1, past_obs_lags = c(1, 2))
confint(M_arson)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.