Nothing
setClass("RateRule", representation(variable = "character"),
contains = "Rule")
setMethod("describe", "RateRule",
function(object) paste(variable(object), ":=", math(object)))
setMethod("variable", "RateRule", function(object) object@variable)
setReplaceMethod("variable", "RateRule", function(object, value) {
object@variable <- 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.