cumprob {ibmcraftr} | R Documentation |
Calculate cumulative probabilities for state transitions.
Description
This function takes in a vector of probabilities of states transitions and calculate the probability of staying in the original state and output the cumulative probabilities for all possibilities.
Usage
cumprob(probs, actual = FALSE)
Arguments
probs |
A numeric vector of the probabilities of transition to states. |
actual |
A logical value, if TRUE, will calculate actual cumulative probabilities which may surpass 1!. |
Value
A numeric vector of cumulative probabilites inclusive of the probability of having the same state in the next timestep.
Examples
cumprob(c(.2,.2,.9))
cumprob(c(.2,.2,.9), actual=TRUE)
cumprob(c(.2,.2,.2))
[Package ibmcraftr version 1.0.0 Index]