Nothing
limit_years_of_data <- function(.data, dots_params) {
if (is.null(.data)|| isFALSE(.data)) {
return(null)
}
.data <- .data %>% dplyr::filter(date >= dots_params$start_date)
if (!is.null(dots_params$end_date)) {
.data <- .data %>% dplyr::filter(date < dots_params$end_date)
}
.data
}
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.