We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba0bc05 commit 042ff7dCopy full SHA for 042ff7d
pandas/plotting/_matplotlib/hist.py
@@ -113,10 +113,10 @@ def _plot( # type: ignore[override]
113
column_num: int = 0,
114
stacking_id=None,
115
*,
116
- bins,
117
**kwds,
118
- # might return a subset from the possible return types of Axes.hist(...)[2]?
+ # might return a subset from the possible return types of Axes.hist(...)?
119
) -> BarContainer | Polygon | list[BarContainer | Polygon]:
+ bins = kwds.pop("bins")
120
if column_num == 0:
121
cls._initialize_stacker(ax, stacking_id, len(bins) - 1)
122
0 commit comments