Check-in 3

Author

YOUR NAME HERE

Remember, follow the instructions below and use R Markdown to create a pdf document with your code and answers to the following questions on Gradescope. You may find a template file by clicking “Code” in the top right corner of this page.

Use the following code to download the annual consumer price index data from the World Bank:

library(openxlsx)
cpi <- read.xlsx("https://thedocs.worldbank.org/en/doc/1ad246272dbbc437c74323719506aa0c-0350012021/original/Inflation-data.xlsx",
                 sheet = 5)
cpi <- cpi[1:203,]
  1. Create a line plot with Year on the x-axis and CPI on the y-axis, with different color lines for the US, Canada, and Mexico.