Nothing
## returns the modal value of a variable
## author: Gilbert Ritschard
rowmode <- function(v, except = NULL) {
tt <- table(v)
tt <- tt[!(names(tt) %in% except)]
return(names(tt)[which.max(tt)])
}
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.