ParamHMMR contains all the parameters of a HMMR model. The parameters are calculated by the initialization Method and then updated by the Method implementing the M-Step of the EM algorithm.
XNumeric vector of length m representing the covariates/inputs x_{1},…,x_{m}.
YNumeric vector of length m representing the observed response/output y_{1},…,y_{m}.
mNumeric. Length of the response/output vector Y.
KThe number of regimes (HMMR components).
pThe order of the polynomial regression.
variance_typeCharacter indicating if the model is homoskedastic
(variance_type = "homoskedastic") or heteroskedastic (variance_type = "heteroskedastic"). By default the model is heteroskedastic.
priorThe prior probabilities of the Markov chain. prior is a row
matrix of dimension (1, K).
trans_matThe transition matrix of the Markov chain. trans_mat is a
matrix of dimension (K, K).
maskMask applied to the transition matrices trans_mat. By default,
a mask of order one is applied.
betaParameters of the polynomial regressions. β =
(β_{1},…,β_{K}) is a matrix of dimension (p + 1, K),
with p the order of the polynomial regression. p is fixed to 3 by
default.
sigma2The variances for the K regimes. If HMMR model is
heteroskedastic (variance_type = "heteroskedastic") then sigma2 is a
matrix of size (K, 1) (otherwise HMMR model is homoskedastic
(variance_type = "homoskedastic") and sigma2 is a matrix of size
(1, 1)).
nuThe degree of freedom of the HMMR model representing the complexity of the model.
phiA list giving the regression design matrices for the polynomial and the logistic regressions.
initParam(try_algo = 1)Method to initialize parameters mask, prior,
trans_mat, beta and sigma2.
If try_algo = 1 then beta and sigma2 are
initialized by segmenting the time series Y uniformly into
K contiguous segments. Otherwise, beta and
sigma2 are initialized by segmenting randomly the time series
Y into K segments.
MStep(statHMMR)Method which implements the M-step of the EM algorithm to learn the
parameters of the HMMR model based on statistics provided by the object
statHMMR of class StatHMMR (which contains the E-step).
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.