R/plot.mc.R

Defines functions plot.mc

Documented in plot.mc

#' Plot Markov Chains
#' 
#' @description A plotting method for markov chains.
#' @param reps the number of replications
#' @param prob the probability matrix
#' 
#' @author Tyler Hunt \email{tyler@@psychoanalytix.com}
#' 
#' @examples
#'  A<-matrix(c(.9,.8,0,0,.1,.2,0,0,0,0,.5,.6,0,0,.5,.4), nrow=4)
#'  B<-matrix(rep(.3,16), nrow=4); diag(B)<-.1
#'  C<-matrix(c(.9,0,0,0, .1,.9,0,0 ,0,.1,.8,.1, 0,0,.2,.9), nrow=4)
#'  D<-matrix(c(.9,0,0,.1,.1,.9,0,0,0,.1,.9,0,0,0,.1,.9), nrow=4)
#' plot.mc(100, B)
#' 
#' 
#' @export

plot.mc<-function(reps, prob){
  plot(1:reps, mc(prob, reps), "l", xlab="Replications", ylab="Random Values")
}
JackStat/CompPack documentation built on May 7, 2019, 10:16 a.m.