bic: BIC Bayesian Information Criterion for the HMM

Description Usage Arguments Value References See Also Examples

View source: R/summary.R

Description

BIC Bayesian Information Criterion for the HMM

Usage

1
bic(hmm)

Arguments

hmm

an object of class "mhmm" or "fhmm", a result of a call to fitBM_mhmm or fitBM_fhmm

Value

The function returns the value corresponding to the BIC for a HMM.

References

Martino A., Guatteri, G. and Paganoni A. M., Multivariate Hidden Markov Models for disease progression, Mox Report 59/2018, 2018 Martino A., Guatteri, G. and Paganoni A. M., Hidden Markov Models for multivariate functional data, MOX Report 21/2019, 2019

See Also

aic, fitBM_fhmm, fitBM_mhmm

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
data(copulahmmdata)
Obs <- copulahmmdata
n <- 20 #number of statistical units
n_tot <- 5000 #total number of observations
bt <- seq(1, n_tot, by = n)
distr <- c("exp", "gaussian")
#Initialize the HMM
parameters <- list(as.matrix(c(1,0.25)), matrix(c(3, -1, 1, 1), nrow = 2))
corr <- array(c(1, 0.4, 0.4, 1, 1, 0.1, 0.1, 1), dim = c(2, 2, 2))
hmm <- set_mhmm(Obs, bT = bt, nStates = 2, params = parameters, corr = corr, distr = distr)
# Compute the parameters of the HMM with the Baum-Welch algorithm
bw <- fitBM_mhmm(hmm)

BIC <- bic(bw)

hmmhdd documentation built on Sept. 4, 2019, 5:03 p.m.

Related to bic in hmmhdd...