Nothing
check_data <- function(data) {
if (ncol(data$data) != length(data$resources)) {
stop("data and resource sizes must match")
}
if (!all(data$starts + data$lengths - 1 <= ncol(data$data))) {
stop("data lengths don't match its shape")
}
}
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.