We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
vba_choropleth
Hi, is it possible to customize the legend's axis labels in splot's vba_choropleth? (I'm referring to this guide: https://nbviewer.org/github/pysal/splot/blob/main/notebooks/mapping_vba.ipynb)
splot
from libpysal import examples import matplotlib.pyplot as plt from splot.mapping import vba_choropleth import geopandas as gpd link_to_data = examples.get_path('columbus.shp') gdf = gpd.read_file(link_to_data) fig = plt.figure(figsize=(15,10)) ax = fig.add_subplot(111) vba_choropleth('HOVAL', 'CRIME', gdf, alpha_mapclassify=dict(classifier='quantiles', k=5), rgb_mapclassify=dict(classifier='quantiles', k=5), legend=True, ax=ax) plt.show()
For example, is it possible to change "alpha variable" to "HOVAL" and "rgb variable" to "crime"?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi, is it possible to customize the legend's axis labels in
splot
'svba_choropleth
?(I'm referring to this guide: https://nbviewer.org/github/pysal/splot/blob/main/notebooks/mapping_vba.ipynb)
For example, is it possible to change "alpha variable" to "HOVAL" and "rgb variable" to "crime"?
The text was updated successfully, but these errors were encountered: