Nothing
setClass("FunctionDefinition", representation(id = "character", name = "character", math = "expression"),
contains = "SBase")
setMethod("describe", "FunctionDefinition",
function(object) paste(id(object), "<-", math(object)))
setMethod("id", "FunctionDefinition", function(object) object@id)
setMethod("name", "FunctionDefinition", function(object) object@name)
setMethod("math", "FunctionDefinition", function(object) object@math)
setReplaceMethod("id", "FunctionDefinition", function(object, value) {
object@id <- value
object
})
setReplaceMethod("name", "FunctionDefinition", function(object, value) {
object@name <- value
object
})
setReplaceMethod("math", "FunctionDefinition", function(object, value) {
object@math <- asMath(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.