conditionalDistribution | R Documentation |
conditionalDistribution
of a Markov ChainIt extracts the conditional distribution of the subsequent state, given current state.
conditionalDistribution(object, state)
object |
A |
state |
Subsequent state. |
A named probability vector
Giorgio Spedicato, Deepak Yadav
A First Course in Probability (8th Edition), Sheldon Ross, Prentice Hall 2010
markovchain
# define a markov chain
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)))
conditionalDistribution(markovB, "b")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.