Nothing
is_listing <- function(type) {
substr(tolower(type), 1, 1) == "l"
}
is_table <- function(type) {
substr(tolower(type), 1, 1) == "t"
}
is_graph <- function(type) {
substr(tolower(type), 1, 1) %in% c("g", "f")
}
is_format_rtf <- function(format) {
tolower(format) == "rtf"
}
is_format_html <- function(format) {
tolower(format) == "html"
}
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.