Nothing
#' @aliases show,TransitionLayer-method
#' @aliases show,TransitionStack-method
#' @author Jacob van Etten
#' @exportMethod show
setMethod("show" , "TransitionLayer",
function(object) {
callNextMethod(object)
cat("values :", matrixValues(object), "\n")
cat("matrix class:", class(transitionMatrix(object)), "\n")
}
)
#' @exportMethod show
setMethod("show" , "TransitionStack",
function(object) {
callNextMethod(object)
cat("nlayers :", nlayers(object), "\n")
#show something about the layers if layers <=5
#cat("values :", matrixValues(x), "\n")
#cat("matrix class:", class(transitionMatrix(x)), "\n")
}
)
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.