squantCI {hmm.discnp} | R Documentation |
Simulation-quantile based confidence intervals.
Description
Calculates estimates of confidence intervals for the parameters of a
model fitted by hmm.discnp
. Uses a method based quantiles
of estimates produced by simulation (or “parametric
bootstrapping”).
Usage
squantCI(object, expForm = TRUE, seed = NULL, alpha = 0.05,
nsim=100, verbose = TRUE)
Arguments
object |
An object of class |
expForm |
Logical scalar. Should the confidence intervals produced
be for the parameters expressed in “exponential”
(or “smooth” or “logistic”) form?
If |
seed |
Integer scalar serving as a seed for the random number generator.
If left |
alpha |
Positive real number strictly between 0 and 1. A set of
|
nsim |
A positive integer. The number of simulations upon which the confidence interval estimates will be based. |
verbose |
Logical scalar; if |
Details
This function is currently applicable only to models fitted to
univariate data. If there are predictors in the model,
then only the exponential form of the parameters may be used,
i.e. expForm
must be TRUE
.
Value
A npar
-by-2 matrix (where npar
is the number
of “independent” parameters in the model) whose rows
form the estimated confidence intervals. (The first entry of
each row is the lower bound of a confidence interval for the
corresponding parameter, and the second entry is the upper bound.
The row labels indicate the parameters to which each row pertains,
in a reasonably perspicuous manner. The column labels indicate
the relevant quantiles in percentages.
This matrix has an attribute seed
(the random number
generation seed that was used) so that the calculations can
be reproduced.
Author(s)
Rolf Turner
r.turner@auckland.ac.nz
See Also
scovmat()
link{rhmm}()
link{hmm)}()
Examples
## Not run:
y <- list(lindLandFlows$deciles,ftLiardFlows$deciles)
fit <- hmm(y,K=3)
CIs <- squantCI(fit,nsim=100)
## End(Not run)