Skip to content

Instantly share code, notes, and snippets.

@ccerv1
Created February 23, 2019 13:49
Show Gist options
  • Select an option

  • Save ccerv1/a47936598e4c97b97bbe7ff65114bbd8 to your computer and use it in GitHub Desktop.

Select an option

Save ccerv1/a47936598e4c97b97bbe7ff65114bbd8 to your computer and use it in GitHub Desktop.
V1 choropleth map of coffee production growth rates
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