Nothing
# Author: Robert J. Hijmans
# contact: r.hijmans@gmail.com
# Date : December 2009
# Version 0.1
# Licence GPL v3
if (!isGeneric("plot")) {
setGeneric("plot", function(x, y, ...)
standardGeneric("plot"))
}
setMethod("plot", signature(x='DistModel', y='numeric'),
function(x, y=1, ...) {
x <- x@presence
plot(sort(x[,y]), ylab=colnames(x@presence[y]), ...)
}
)
if (!isGeneric("points")) {
setGeneric("points", function(x, ...)
standardGeneric("points"))
}
setMethod("points", signature(x='DistModel'),
function(x, y=2, ...) {
x <- x@presence
points(sort(x[,y]), ...)
}
)
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.