Created
September 21, 2020 10:38
-
-
Save BexTuychiev/4578cbd46587595dc58a46eb3bc30955 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fig, ax = plt.subplots() | |
ax.plot(climate_change['date'], climate_change['co2']) | |
ax.set(title='Amount of CO2 (ppm) in each year', xlabel='Year', | |
ylabel='Amount of CO2 (ppm)'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment