Nothing
### =========================================================================
### The table() generic
### -------------------------------------------------------------------------
### base::table() has a broken signature (list.names() is a function
### defined *inside* the body of base::table() so the default value for the
### 'dnn' arg is an expression that cannot be evaluated *outside* the
### base::table environment, this is poor design), we cannot keep all the
### extra arguments in the table() generic (those extra arguments are ugly
### and nobody uses them anyway).
#setGeneric("table", signature="...",
# function(..., exclude = if (useNA == "no") c(NA, NaN),
# useNA = c("no", "ifany", "always"),
# dnn = list.names(...),
# deparse.level = 1)
# standardGeneric("table")
#)
### So we use this instead.
.table.useAsDefault <- function(...) base::table(...)
setGeneric("table", signature="...",
function(...) standardGeneric("table"),
useAsDefault=.table.useAsDefault
)
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.