Nothing
get_n <- function(n = NULL, ...){
n <- unique(c(n ,unlist(sapply(list(...), get_n_single))))
if(length(n) > 1){
stop("All sets of covariates must have the same number of observations")
} else {
if(length(n) == 0) stop("No covariates supplied")
}
return(n)
}
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.