Created
February 23, 2019 13:49
-
-
Save ccerv1/a47936598e4c97b97bbe7ff65114bbd8 to your computer and use it in GitHub Desktop.
V1 choropleth map of coffee production growth rates
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
| cagr_map = pd.concat([world_map, world_production], axis=1, sort=True) | |
| cagr_map.fillna(0, inplace=True) | |
| cagr_map.plot(column='CAGR', cmap='Blues') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment