plotMod {countHMM}R Documentation

plotMod

Description

Plots the estimated state-dependent distributions.

Usage

plotMod(mod)

Arguments

mod

An object of type countHMM (as returned by the function fitMod).

Value

A plot of the estimated state-dependent distributions.

Examples

# 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)

[Package countHMM version 0.1.0 Index]