viterbi | R Documentation |
For a given model, reconstructs the most probable states sequence, using the Viterbi algorithm.
viterbi(m, newdata = NULL)
m |
An object |
newdata |
An object |
The sequence of most probable states.
Zucchini, W. and MacDonald, I.L. 2009. Hidden Markov Models for Time Series: An Introduction Using R. Chapman & Hall (London).
# m is a moveHMM object (as returned by fitHMM), automatically loaded with the package
m <- example$m
# reconstruction of states sequence
states <- viterbi(m)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.