# 2. beds (dependent upon the tow function)
clean_bed <- function(tows){
area %>%
full_join(count(tows, Bed)) %>%
drop_na %>%
rename(tows = n) %>%
mutate(Bed = factor(Bed)) -> x
write_csv(x, here::here(paste0("output/",YEAR,"/beds.csv")))
x
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.