################################################################################
### Main
################################################################################
## declare the display generic
setGeneric("display", function(object, ...)
standardGeneric("display")
)
setMethod("display",
signature(object = "ANY"),
function(object){
message("Wrong object")
})
setMethod("display",
signature(object = "missing"),
function(object){
message("Missing object")
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.