Nothing
#' Join spatial and incidence datasets
#' @param sf_data sf object
#' @param tbl_data tibble of incidence
#' @param by Column name to join on
#' @return sf object with joined attributes
#' @export
join_data <- function(sf_data, tbl_data, by) {
sf_data %>% dplyr::inner_join(tbl_data, by = by)
}
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.