Nothing
isPositiveNumber <- function(n) {
is.numeric(n) && n > 0
}
isProbability <- function(n) {
is.numeric(n) && n >= 0 && n <= 1
}
retrocombinatorTheme <- function() {
ggplot2::theme(
legend.position = "bottom",
legend.direction = "vertical"
)
}
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.