Nothing
# Internal functions
## Check whether something is a whole number
is_whole_number <- function(x){
if(is.integer(x)){
TRUE
} else if(is.numeric(x)){
if((x%%1) == 0 ){
TRUE
} else {
FALSE
}
} else {
FALSE
}
}
is_whole_positive <- function(x){
if(is_whole_number(x) && x >= 0) TRUE else FALSE
}
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.