Created
September 21, 2020 10:40
-
-
Save BexTuychiev/5fc863e966977412cdb3b55c4ac83a26 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
# Indexing method | |
fig, ax = plt.subplots(1, 2, figsize=(10, 5)) | |
fig.tight_layout(pad=3) | |
ax[0].plot(climate_change['date'], climate_change['co2']) | |
ax[1].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