Nothing
.non_na_scalar <- function(val) {
length(val)==1L && !is.na(val)
}
.non_na_number <- function(val) {
.non_na_scalar(val) && is.numeric(val)
}
.positive_number <- function(val) {
.non_na_number(val) && val > 0
}
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.