Nothing
sum2 <- function(x,...){
by2 <- list(...)
if (length(by2)==0){
sum(x)
}else{
for (i in 1:length(by2)) {
if (i==1) group_res=c()
group_res=paste0(group_res,by2[[i]])
}
table(rep(group_res,x))
}
}
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.