Nothing
library(dplyr, warn.conflicts=FALSE)
library(readr)
get_data <- function(file) {
read_csv(file, col_types = cols()) %>%
filter(!is.na(Ozone))
}
dat <- get_data("data_raw.csv")
dir.create("data", showWarnings=FALSE)
write_csv(dat, "data/data.csv")
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.