This is a convenience function to get transition probabilities.

transitionProbability(object, t0, t1)

# S4 method for markovchain
transitionProbability(object, t0, t1)

Arguments

object

A markovchain object.

t0

Initial state.

t1

Subsequent state.

Value

Numeric Vector

References

A First Course in Probability (8th Edition), Sheldon Ross, Prentice Hall 2010

See also

Author

Giorgio Spedicato

Examples

statesNames <- c("a", "b", "c") markovB <- new("markovchain", states = statesNames, transitionMatrix = matrix(c(0.2, 0.5, 0.3, 0, 1, 0, 0.1, 0.8, 0.1), nrow = 3, byrow = TRUE, dimnames=list(statesNames,statesNames)), name = "A markovchain Object" ) transitionProbability(markovB,"b", "c")
#> [1] 0