Nothing
#' @importFrom rappdirs user_data_dir
tsibbledata_path <- function(...){
path <- file.path(
paste0(
getOption("tsibbledata.path", default = rappdirs::user_data_dir("rpkg_tsibbledata")),
.Platform$file.sep
),
...
)
dir.exists(dirname(path)) || dir.create(dirname(path), recursive = TRUE)
path
}
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.