Nothing
setClass("SpeciesGlyph", representation(species = "character"), contains = "GraphicalObject")
setMethod("describe", "SpeciesGlyph",
function(object) paste(species(object), callNextMethod(object)))
setMethod("species", "SpeciesGlyph", function(object) object@species)
setReplaceMethod("species", "SpeciesGlyph", function(object, value) {
object@species <- value
object
})
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.