fHMM_model {fHMM} | R Documentation |
Constructor of a model object
Description
This function constructs an object of class fHMM_model
, which
contains details about the fitted (hierarchical) Hidden Markov model.
Usage
fHMM_model(
data,
estimate,
nlm_output,
estimation_time,
ll,
lls,
gradient,
inverse_fisher,
decoding
)
## S3 method for class 'fHMM_model'
print(x, ...)
## S3 method for class 'fHMM_model'
residuals(object, ...)
## S3 method for class 'fHMM_model'
summary(object, alpha = 0.05, ...)
## S3 method for class 'fHMM_model'
coef(object, alpha = 0.05, digits = 2, ...)
## S3 method for class 'fHMM_model'
AIC(object, ..., k = 2)
## S3 method for class 'fHMM_model'
BIC(object, ...)
## S3 method for class 'fHMM_model'
nobs(object, ...)
## S3 method for class 'fHMM_model'
logLik(object, ...)
npar(object, ...)
## S3 method for class 'fHMM_model'
npar(object, ...)
## S3 method for class 'fHMM_model'
predict(object, ahead = 5, alpha = 0.05, ...)
Arguments
data |
An object of class |
estimate |
A |
nlm_output |
The output of |
estimation_time |
A |
ll |
A |
lls |
A |
gradient |
A |
inverse_fisher |
A |
decoding |
A |
x , object |
An object of class |
... |
Currently not used. |
alpha |
A |
digits |
The number of decimal places. |
k |
Passed on to |
ahead |
The number of time points to predict ahead. |
Value
An object of class fHMM_model
.