Nothing
.maxDatatype <- function(x) {
x <- sort(x)
x <- x[substr(x, 1, 3)== substr(x[1], 1, 3)]
size <- max(as.integer(substr(x, 4, 4)))
if (substr(x[1], 1, 3) == 'FLT') {
return( paste('FLT', size, 'S', sep="") )
} else {
# need to do better than this
return( 'INT4S' )
}
}
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.