This week we're inviting you to participate in the 2024 Du Bois Visualization Challenge.
The goal of the challenge is to celebrate the data visualization legacy of W.E.B Du Bois by recreating the visualizations from the 1900 Paris Exposition using modern tools.
This year the challenge is organized around the colors of the Pan African Flag. For this final week, use a combination of the colors from the flag to reproduce plate 37, "A Series Of Statistical Charts Illustrating The Conditions Of Descendants Of Formal African Slaves Now Resident In The Unites States." Visit the challenge GitHub repository for more details!
# Option 1: tidytuesdayR package
## install.packages("tidytuesdayR")
tuesdata <- tidytuesdayR::tt_load('2024-04-02')
## OR
tuesdata <- tidytuesdayR::tt_load(2024, week = 14)
dubois_week10 <- tuesdata$dubois_week10
# Option 2: Read directly from GitHub
dubois_week10 <- readr::read_csv('https://raw.githubusercontent.com/rfordatascience/tidytuesday/master/data/2024/2024-04-02/dubois_week10.csv')
- Explore the data, watching out for interesting relationships. We would like to emphasize that you should not draw conclusions about causation in the data. There are various moderating variables that affect all data, many of which might not have been captured in these datasets. As such, our suggestion is to use the data provided to practice your data tidying and plotting techniques, and to consider for yourself what nuances might underlie these relationships.
- Create a visualization, a model, a shiny app, or some other piece of data-science-related output, using R or another programming language.
- Share your output and the code used to generate it on social media with the #TidyTuesday hashtag.
variable | class | description |
---|---|---|
Occupation | character | Occupations of the 330 "negro" graduates of Atlanta University as of 1900. |
Percentage | double | Percentage of graduates with this occupation. |
No cleaning. This week's data comes directly from the Du Bois Challenge GitHub.