Created
September 21, 2020 10:39
-
-
Save BexTuychiev/704d9810d64b27e1a8963f4e42912c6c 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
# Unpacking method | |
fig, (ax1, ax2) = plt.subplots(1, 2, figsize=(10, 5)) | |
fig.tight_layout(pad=3) | |
ax1.plot(climate_change['date'], climate_change['co2']) | |
ax2.plot(climate_change['date'], climate_change['relative_temp']) | |
plt.show(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment