Nothing
sys_time_utc <- function() {
time <- Sys.time()
attr(time, "tzone") <- "UTC"
time
}
is_try_error <- function(x) {
inherits(x, "try-error")
}
tibble <- function(...) {
data <- data.frame(..., stringsAsFactors = FALSE)
class(data) <- c("tbl_df", "tbl", "data.frame")
data
}
set_names <- function(x, names) {
names(x) <- names
x
}
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.