Skip to content

Instantly share code, notes, and snippets.

@ceteri
Created May 31, 2020 08:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ceteri/80d17507ee83837b62fe8426c49f9779 to your computer and use it in GitHub Desktop.
Save ceteri/80d17507ee83837b62fe8426c49f9779 to your computer and use it in GitHub Desktop.
ax = gplt.choropleth(
cv19,
hue="deaths_per_mil",
edgecolor="white",
linewidth=5,
cmap="Reds",
alpha=0.8,
projection=gcrs.AlbersEqualArea(),
figsize=(30, 30)
)
ax = gplt.pointplot(
continental_usa_cities,
hue="POP_2010",
cmap="Greens",
scheme="quantiles",
scale="POP_2010",
limits=(3, 50),
zorder=2,
alpha=0.4,
ax=ax
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment