Ruth Comer
Ruth Comer
## PR summary Fixes #28990. I think it would be good to get this minor fix in for v3.10 since the example from the issue will otherwise not be possible...
## PR summary I had expected `secondary_xaxis` to return something that behaves like `XAxis`, so was surprised to get ``` AttributeError: 'SecondaryAxis' object has no attribute 'set_tick_params'. Did you mean:...
## Rationale Closes #2447. Introduce `shapely_to_path` which maps a single Shapely geometry or collection to a single Matplotlib path, and `path_to_shapely`, which does the opposite. To take full advantage of...
Should this logic be moved up into the `geos_to_path()` function though? That currently returns a list of paths, but it seems like if you're passing in one geometry that should...
Another solution to that might be to have a flag on the feature that says "these are edges" and override `set_color` to only set the edgecolor in that case. This...
### Description This is an Iris-free reproducer of https://github.com/SciTools/cartopy/issues/1076#issuecomment-1026018858. Note that Iris has its own automatic equivalent of `add_cyclic`, which is required to reproduce the problem. #### Code to reproduce...
## PR summary The proposal evolved through the below discussion. The idea is to introduce a new _wedge_labels_ parameter to `pie` which supersedes *autopct*, via its use of the `str.format`...
## PR summary `hist`, `stackplot` and `grouped_bar` all loop through datasets and call another plotting method repeatedly. This means they have a common requirement to support sequences for parameters such...
## PR summary Possibly closes #30230, though I'm unsure if it's a bit too hacky. Introduce new private attributes so that `apply_aspect` can keep track of the previously set x/y-bounds....
## PR summary Fixes #30770. The problem was that `set_title` restores default styles, so we should only update the string. No test added per https://github.com/matplotlib/matplotlib/issues/30770#issuecomment-3562914060, but I have run the...