Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
Fixed a plotting bug in
plot_graphfor homogeneous graphs whenlegend=True,legend_kwargs, andtitleare providedProblem
plot_graphwas forwardinglegend,legend_kwargs, andtitledirectly into lower-levelGeoDataFrame.plot()kwargs. In this path:legend_kwargsleaked into edge plotting and triggered:IndexError: index 1 is out of bounds for axis 0 with size 1titlewas also incorrectly passed through instead of being applied on the axes.Root Cause
In
_plot_homo_graphand style resolution, plot-control kwargs (legend,legend_kwargs,title) were not properly treated as city2graph-managed parameters. They were unintentionally propagated to GeoPandas/Matplotlib collection plotting calls.Changes
legend,legend_kwargs, andtitleas reserved c2g keys so they are excluded from generic style kwargs.title,legend,legend_kwargsbefore edge/node plotting,legend_kwargsto GeoPandas’ expectedlegend_kwds,ax.set_title(...)after plotting.pd.Series/column refs to numpy arrays where needed for consistent plotting behavior.Validation
node_colorcolumn,edge_linewidthseries,legend=True,legend_kwargs, andtitle.Related Issues
#121
Checklist