Nothing
## File Name: cdm_sort_unique.R
## File Version: 0.01
cdm_sort_unique <- function(x)
{
if( ! ( is.numeric(x) ) ){
gr2 <- unique( sort(paste(x) ))
} else {
gr2 <- unique( sort(x) )
}
return(gr2)
}
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.