plotMod {countHMM} | R Documentation |
Plots the estimated state-dependent distributions.
plotMod(mod)
mod |
An object of type |
A plot of the estimated state-dependent distributions.
# importing example data
x = read.table("http://www.hmms-for-time-series.de/second/data/earthquakes.txt")$V2
# model fitting
lambda = rep(10^4,2)
mod = fitMod(x=x,lambda=lambda)
# plotting the estimated state-dependent distributions
plotMod(mod)