Learn R Programming

markovchain (version 0.9.5)

noofVisitsDist: return a joint pdf of the number of visits to the various states of the DTMC

Description

This function would return a joint pdf of the number of visits to the various states of the DTMC during the first N steps.

Usage

noofVisitsDist(markovchain,N,state)

Value

a numeric vector depicting the above described probability density function.

Arguments

markovchain

a markovchain-class object

N

no of steps

state

the initial state

Author

Vandit Jain

Details

This function would return a joint pdf of the number of visits to the various states of the DTMC during the first N steps.

Examples

Run this code
transMatr<-matrix(c(0.4,0.6,.3,.7),nrow=2,byrow=TRUE)
simpleMc<-new("markovchain", states=c("a","b"),
             transitionMatrix=transMatr, 
             name="simpleMc")   
noofVisitsDist(simpleMc,5,"a")

Run the code above in your browser using DataLab