ggplot(data = trash_bmore, aes(x = Month, y = `Weight(tons)`, fill = Month)) +
geom_col() +
theme_bw() +
theme(axis.text.x = element_text(angle = 45)) +
guides(fill = "none")+
scale_fill_viridis_d(option = "plasma", name = "Month", direction = -1) +
facet_wrap(~Year) +
labs(title = "Baltimore Trash Volume (tons) Comparison for Years 2015 and 2022")