AE 05: Tidying Stat Sci

Goal

Our ultimate goal in this application exercise is to make the following data visualization.

{fig-alt=“Line plot of numbers of Statistical Science majors over the years (2011 - 2025). Degree types represented are BS, BS2, AB, AB2. There is an increasing trend in BS degrees and somewhat steady trend in AB degrees.” fig-align=“center”}

Data

The data come from the Office of the University Registrar. They make the data available as a table that you can download as a PDF, but I’ve put the data exported in a CSV file for you. Let’s load that in.

library(tidyverse)

statsci <- read_csv("data/statsci_clean.csv")

And let’s take a look at the data.

statsci
# A tibble: 4 × 16
  degree_type `2011` `2012` `2013` `2014` `2015` `2016` `2017` `2018` `2019`
  <chr>        <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>  <dbl>
1 AB2              0      1      0      0      4      4      1      0      0
2 AB               2      2      4      1      3      6      3      4      4
3 BS2              2      6      1      0      5      6      6      8      8
4 BS               5      9      4     13     10     17     24     21     26
# ℹ 6 more variables: `2020` <dbl>, `2021` <dbl>, `2022` <dbl>, `2023` <dbl>,
#   `2024` <dbl>, `2025` <dbl>

Pivoting

  • Demo: Pivot the statsci data frame longer such that:

    • Each row represents a degree type / year combination
    • year and number of graduates for that year are columns in the data frame
    • The resulting year column is numeric
# add your code here
  • Your Turn: Now, repeat your code from above, but this time save the result to a new variable name.
# add your code here

Plotting

  • Your turn: Now we will start making our plot, but let’s not get too fancy right away. Create the following plot, which will serve as the “first draft” on the way to our Goal. Do this by adding on to your pipeline from earlier.

Line plot of numbers of Statistical Science majors over the years (2011 - 2025). Degree types represented are BS, BS2, AB, AB2. There is an increasing trend in BS degrees and somewhat steady trend in AB degrees.

# add your code here
  • Question: Why was the pivot necessary in order to create this plot?

Add your response here!

  • Question: What aspects of the plot need to be updated to go from the draft you created above to the Goal plot at the beginning of this application exercise.

Add your response here.

  • Demo: Update x-axis scale such that the years displayed go from 2011 to 2025 in increments of 2 years. Do this by adding on to your pipeline from earlier.
# add your code here
  • Demo: Update line colors using the following level / color assignments. Once again, do this by adding on to your pipeline from earlier.
    • “BS” = “cadetblue4”

    • “BS2” = “cadetblue3”

    • “AB” = “lightgoldenrod4”

    • “AB2” = “lightgoldenrod3”

# add your code here
  • Your turn: Update the plot labels (title, subtitle, x, y, and caption) and use theme_minimal(). Once again, do this by adding on to your pipeline from earlier.
# add your code here
  • Demo: Finally, adding to your pipeline you’ve developed so far, move the legend into the plot, make its background white, and its border gray. Set fig-width: 7 and fig-height: 5 for your plot in the chunk options.
# add your code here

Let’s now pivot wider!

  • DemoJust like you can pivot longer, you can pivot wider. Let’s convert our longer data frame back into the wider one in a single pipeline.
# add your code here