Compare weekly, monthly and annual ozone trends for NYC & LA
You have seen in the video how to downsample and aggregate time series on air quality.
First, you'll apply this new skill to ozone data for both NYC and LA since 2000 to compare the air quality trend at weekly, monthly and annual frequencies and explore how different resampling periods impact the visualization.
Den här övningen är en del av kursen
Manipulating Time Series Data in Python
Övningsinstruktioner
We have again imported pandas as pd and matplotlib.pyplot as plt for you.
- Use
pd.read_csv()to import'ozone.csv'and set aDateTimeIndexbased on the'date'column using parse_dates andindex_col, assign the result toozoneand inspect using.info(). - Apply
.resample()with weekly frequency ('W') toozone, aggregate using.mean()and plot the result. - Repeat with monthly (
'M') and annual ('A') frequencies, plotting each result.
Interaktiv övning med praktiskt arbete
Testa den här övningen genom att slutföra den här exempelkoden.
# Import and inspect data here
ozone = ____
# Calculate and plot the weekly average ozone trend
# Calculate and plot the monthly average ozone trend
# Calculate and plot the annual average ozone trend