Nothing
count2str <- function(count) {
count <- rev(strsplit(as.character(count), "")[[1]])
if(length(count) > 3) count <- count[1:3]
counts <- rep("0", 3)
counts[seq_along(count)] <- count
rev(counts)
}
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.