Nothing
# Added '...' to some base functions. These will later be
# turned into default functions by setMethodS3().
# USED TO DO: colSums <- appendVarArgs(colSums)
colSums <- function(...) UseMethod("colSums")
setMethodS3("colSums", "default", function(...) {
base::colSums(...)
})
# USED TO DO: colMeans <- appendVarArgs(colMeans)
colMeans <- function(...) UseMethod("colMeans")
setMethodS3("colMeans", "default", function(...) {
base::colMeans(...)
})
write <- appendVarArgs(write)
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.