In Chapter 2, Working with Pandas DataFrames, we worked on data collection and how to perform an initial inspection and filtering of the data; this usually gives us ideas of things that need to be addressed before we move further in our analysis. Since this chapter builds on those skills, we will get to practice some of them here as well. To begin, we will start by exploring the weather API that's provided by the NCEI. We will learn about data wrangling with temperature data that's obtained from the API.
To use the API, you will have to request a token by filling out the form with your email address here: https://www.ncdc.noaa.gov/cdo-web/token. If you don't want to do this, you can read through the API code and then read in the CSV file from the GitHub folder and follow along from there.
For this section, we will be working in the...