### =========================================================================
### The eval() generic
### -------------------------------------------------------------------------
###
### Need to explicitly define this generic otherwise the implicit generic in
### package "base" would dispatch on all its arguments. Here we set dispatch
### on the first two args (the 'expr' and 'envir' args) only!
setGeneric("eval", signature=c("expr", "envir"),
function(expr, envir=parent.frame(),
enclos=if (is.list(envir) || is.pairlist(envir))
parent.frame() else baseenv())
{
force(envir)
force(enclos)
standardGeneric("eval")
}
)
evalq <- function(expr, envir = parent.frame(),
enclos = if (is.list(envir) || is.pairlist(envir))
parent.frame() else baseenv())
eval(substitute(expr), envir, enclos)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.