Nothing
#matP.R
# extracts the matrix of probabilities from a carms object simulation
matP<-function(x) {
# need to test that x is a carms object among perhaps other validations
if(!is(x,"carms")){
stop("x argument is not of class carms ")
}
if(is.null(x$simulation)) stop("carms object has no simulation")
P<-x$simulation$P
P
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.