Nothing
setMethod("updateObjectTo", signature(object="ANY", template="ANY"),
function(object, template, ..., verbose=FALSE) {
if (verbose)
message("updateObject(object = 'ANY', template = 'ANY') default for object = '",
class(object), "' template = ", class(template), "'")
if (class(object)==class(template))
object
else {
tryCatch(as(object, class(template)),
error=function(err) {
stop("\nupdateObjectTo:\n ",
"cannot convert object of class '", class(object), "' ",
"to template class '", class(template), "'")})
}
})
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.