library(tidyverse)
# data
fatal = read_csv("temp/raw-data/casualties.csv") %>%
select(-state_pop_2010, -nationality) %>%
mutate(source = factor(source))
# write out
save(fatal, file = "data/fatal.rda")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.