# skip first two rows - not datadisasters <-read_csv(file ="data/events-US-1980-2024-Q4.csv", skip =2) |># clean column names janitor::clean_names() |># fix date variablesmutate(across(.cols =ends_with("date"),.fns = ymd ) )
Rows: 403 Columns: 7
── Column specification ────────────────────────────────────────────────────────
Delimiter: ","
chr (2): Name, Disaster
dbl (5): Begin Date, End Date, CPI-Adjusted Cost, Unadjusted Cost, Deaths
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
Your turn: With a partner or small team, explore key trends in the data and discuss:
What emotions could this data evoke?
What visualization techniques could enhance that emotional impact?
Explore the NOAA website
The NOAA has created a handful of static and interactive visualizations using this data that are available online. Feel free to look at them for inspiration.
Design and implement a visualization
Your turn: Create a visualization (or set of visualizations) designed to elevate emotion and tell a story of the impact of these disasters. Consider how you can use color, annotation, personal perspectives,2, etc. to make the data more engaging and impactful.
Note
Feel free to bring in additional data sources for this exercise, albeit we have only a limited amount of time together.
When you are finished, share your visualization(s) with the class on GitHub Discussions.
Remember ggsave()
You can use ggsave() to export your graphs to local files in order to post on the discussion thread.