Nothing
fds <- function (x, y, xname, yname)
{
if (missing(xname))
xname <- deparse(substitute(x))
if (missing(yname))
yname <- deparse(substitute(y))
y <- as.matrix(y)
if (is.null(colnames(y)))
{
colnames(y) = 1:ncol(y)
# warning("Please assign column name for the data matrix.")
}
if (length(x) != nrow(y))
stop("Dimensions do not match")
return(structure(list(x = x, y = y, xname = xname,
yname = yname), class = "fds"))
}
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.