Lab 02 - Data tidying

Lab
Modified

June 7, 2024

Important

This lab is due June 6 at 11:59pm.

Learning goals

In this lab, you will…

  • use pivoting to reshape data
  • use joins to bring together two datasets
  • continue developing a workflow for reproducible data analysis
  • utilize automated helpers to assist with code style and best practices
  • continue working with data visualization tools

Getting started

  • Go to the info2950-su24 organization on GitHub. Click on the repo with the prefix lab-02. It contains the starter documents you need to complete the lab.

  • Clone the repo and start a new project in RStudio. See the Lab 0 instructions for details on cloning a repo and starting a new R project.

  • First, open the Quarto document lab-02.qmd and Render it.

  • Make sure it compiles without errors.

styler for code formatting

Using appropriate code style and adhering to a comprehensive style guide can be complicated at times. styler is an R package that formats your code according to the tidyverse style guide so you can focus your attention on the content of your code. RStudio includes an interactive “Addin” that makes it (mostly) straight-forward to format your code in a Quarto document.

Use styler on poorly-formatted code

  1. Open ae-00-unvotes.qmd in your repository. Render the document. Does it work successfully? How easy or hard is it to read the code and understand what it does?
  2. Switch RStudio to Source Editor mode using the options in the top-left corner of the code editor panel.
Important

The styler RStudio addin will not work when your IDE is in Visual Editor mode. This is a bug in RStudio that is yet to be fixed.

  1. Open the command palette (either ctrl + shift + p or cmd + shift + p) and select “Style active file”.

    A screenshot of the RStudio IDE interface with the Command Palette used to select 'style active file'.

    Observe how the code chunks have now been modifed.

  2. The file remains unsaved. Save and render the document. Examine the output. How easy is it to read the code? Did it fix all the problems?

  3. Switch the IDE back to Visual Editor mode (if you prefer it). Fix the remaining issues with the code. Render one more time and check that the code is fully readable in the HTML document.

Now is a good time to render, commit (with a descriptive and concise commit message), and push again. Make sure that you commit and push all changed documents and your Git pane is completely empty before proceeding.

Warning

You do not need to submit any of the contents of your ae-00-unvotes.html file as part of lab-02 on Gradescope. This is ungraded practice so that you can use styler to assist you with writing clean, interpretable code for your other course assignments (and life).

Warm up

Before we introduce the data, let’s warm up with some simple exercises.

  • Update the YAML, changing the author name to your name, and render the document.
  • Commit your changes with a meaningful commit message.
  • Push your changes to GitHub.
  • Go to your repo on GitHub and confirm that your changes are visible in your .qmd and .pdf files. If anything is missing, render, commit, and push again.

Packages

We’ll use the tidyverse package for much of the data wrangling and the scales package for better plot labels. These packages are already installed for you. You can load it by running the following in your Console:

library(tidyverse)
library(scales)

Data

The datasets that you will work with in this dataset come from the Organization for Economic Co-Operation and Development (OECD), stats.oecd.org.

Part 1: Inflation across the world

For this part of the analysis you will work with inflation data from various countries in the world over the last 30 years.

country_inflation <- read_csv("data/country-inflation.csv")
  1. What does each row of the country_inflation dataset represent? What are the columns in the dataset and what do they represent?

  2. Reshape (pivot) country_inflation such that each row represents a country/year combination, with columns country, year, and annual_inflation. Make sure that annual_inflation is a numeric variable. Save the result as a new data frame – you should give it a concise and informative name.

Now is a good time to render, commit (with a descriptive and concise commit message), and push again. Make sure that you commit and push all changed documents and your Git pane is completely empty before proceeding.

  1. Create a vector called countries_of_interest which contains the names of countries you want to visualize the inflation rates for over the years. For example, if these countries are Türkiye and United States, you can express this as follows:

    countries_of_interest <- c("Türkiye", "United States")

    Your countries_of_interest should consist of no more than five countries. Make sure that the spelling of your countries matches how they appear in the dataset.

  2. In a single pipeline, filter your reshaped dataset to include only the countries_of_interest from the previous exercise and create a plot of annual inflation vs. year for these countries. Then, in a few sentences, state why you chose these countries and describe the patterns you observe in the plot, particularly focusing on anything you find surprising or not surprising, based on your knowledge (or lack thereof) of these countries economies.

    • Data should be represented with points as well as lines connecting the points for each country.

    • Each country should be represented by a different color line.

    • Axes and legend should be properly labeled.

    • The plot should have an appropriate title (and optionally a subtitle).

    • Axis labels for annual inflation should be shown in percentages (e.g., 25% not 25). Hint: The label_percent() function from the scales package will be useful.

      ggplot(...) +
        ... +
        scale_y_continuous(label = label_percent(scale = 1))

Now is a good time to render, commit (with a descriptive and concise commit message), and push again. Make sure that you commit and push all changed documents and your Git pane is completely empty before proceeding.

Part 2: Inflation in the US

The OECD defines inflation as follows:

Inflation is a rise in the general level of prices of goods and services that households acquire for the purpose of consumption in an economy over a period of time.

The main measure of inflation is the annual inflation rate which is the movement of the Consumer Price Index (CPI) from one month/period to the same month/period of the previous year expressed as percentage over time.

Source: OECD CPI FAQ

CPI is broken down into 12 divisions such as food, housing, health, etc. Your goal in this part is to create another time series plot of annual inflation, this time for US only.

The data you will need to create this visualization is spread across two files:

  • us-inflation.csv: Annual inflation rate for the US for 12 CPI divisions. Each division is identified by an ID number.
  • cpi-divisions.csv: A “lookup table” of CPI division ID numbers and their descriptions.

Let’s load both of these files.

us_inflation <- read_csv("data/us-inflation.csv")
cpi_divisions <- read_csv("data/cpi-divisions.csv")
  1. Add a column to the us_inflation dataset called description which has the CPI division description that matches the cpi_division_id, by joining the two datasets.
    • Determine which type of join is the most appropriate one and use that.

    • Note that the two datasets don’t have a common variable. Review the help for the join functions to determine how to use the by argument when the names of the variables that the datasets should be joined by are different.

  2. Create a vector called divisions_of_interest which contains the descriptions or IDs of CPI divisions you want to visualize. Your divisions_of_interest should consist of no more than five divisions. If you’re using descriptions, make sure that the spelling of your divisions matches how they appear in the dataset.

Now is a good time to render, commit (with a descriptive and concise commit message), and push again. Make sure that you commit and push all changed documents and your Git pane is completely empty before proceeding.

  1. In a single pipeline, filter your joined dataset to include only the divisions_of_interest from the previous exercise and create a plot of annual inflation vs. year for these divisions. Then, in a few sentences, state why you chose these divisions and describe the patterns you observe in the plot, particularly focusing on anything you find surprising or not surprising, based on your knowledge (or lack thereof) of inflation rates in the US over the last decade.
    • Data should be represented with points as well as lines connecting the points for each division.

    • Each division should be represented by a different color.

    • Axes and legend should be properly labeled.

    • If your legend has labels that are too long, you can try moving the legend to the bottom and stack the labels vertically. Hint: The legend.position and legend.direction arguments of the theme() functions will be useful.

      ggplot(...) +
        ... +
        theme(
          legend.position = "bottom", 
          legend.direction = "vertical"
        )
    • The plot should have an appropriate title (and optionally a subtitle).

    • Axis labels for annual inflation should be shown in percentages (e.g., 25% not 25).

Render, commit, and push one last time. Make sure that you commit and push all changed documents and your Git pane is completely empty before proceeding.

Submission

Once you are finished with the lab, you will submit your final PDF document to Gradescope.

Warning

Before you wrap up the assignment, make sure all documents are updated on your GitHub repo. We will be checking these to make sure you have been practicing how to commit and push changes.

You must turn in a PDF file to the Gradescope page by the submission deadline to be considered “on time”.

To submit your assignment:

  • Go to http://www.gradescope.com and click Log in in the top right corner.
  • Click School Credentials \(\rightarrow\) Cornell University NetID and log in using your NetID credentials.
  • Click on your INFO 2950 course.
  • Click on the assignment, and you’ll be prompted to submit it.
  • Mark all the pages associated with exercise. All the pages of your lab should be associated with at least one question (i.e., should be “checked”).
  • Select all pages of your .pdf submission to be associated with the “Workflow & formatting” question.

Grading

Component Points
Ex 1 3
Ex 2 6
Ex 3 4
Ex 4 12
Ex 5 4
Ex 6 4
Ex 7 12
Workflow & formatting 5
Total 50
Note

The “Workflow & formatting” component assesses the reproducible workflow. This includes:

  • Having at least 3 informative commit messages
  • Following tidyverse code style
  • All code being visible in rendered PDF (no more than 80 characters)

Acknowledgments