Nothing
# Author: Jacob van Etten
# Date: September 2010
# Version 1.0
# Licence GPL v3
#' @exportMethod summary
if (!isGeneric("summary")) {
setGeneric("summary", function(object, ...)
standardGeneric("summary"))
}
#' @exportMethod summary
setMethod('summary', signature(object='TransitionLayer'),
function(object, ...) {
summary(transitionMatrix(object))
}
)
#' @exportMethod summary
setMethod('summary', signature(object='TransitionStack'),
function(object, ...) {
n <- nlayers(object)
result <- vector("list", length=n)
for(i in 1:n)
{
result[i] <- summary(object@transition[i]@transitionMatrix)
}
return(result)
}
)
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.