Skip to content

Instantly share code, notes, and snippets.

@BexTuychiev
Created September 21, 2020 10:40
Show Gist options
  • Save BexTuychiev/5fc863e966977412cdb3b55c4ac83a26 to your computer and use it in GitHub Desktop.
Save BexTuychiev/5fc863e966977412cdb3b55c4ac83a26 to your computer and use it in GitHub Desktop.
# 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