Nothing
## Non-exported function that can be used to fix up elements of a call
`fixupCall` <- function(object, element, value) {
## element must be character! Try to coerce
element <- as.character(element) ## Fails if not coercible
.call <- getElement(object, "call") ## get call from object
.ll <- as.list(.call) ## convert to a list to manipulate
names(.ll) <- names(.call) ## set names on the list
## if element not in names need to create it
if (! element %in% names(.ll)) {
new <- list(value)
names(new) <- element
.ll <- c(.ll, new)
} else {
## otherwise just update it
.ll[[element]] <- value ## set element to value
}
.call <- as.call(.ll) ## convert back to a call
object$call <- .call ## push back into object
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.