You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Subplot title count fix + fix for issue introduced in earlier PR (#61393)
* test case for subplot stacking
* Removed overlooked print statement
* Updated test to check other subplot in figure
* Updated test cases to include more subplot stacking possibilities
* removed savefig() left in test cases
* Updated test cases to test more arrangements
* Completed function fix (order of subplot input does not matter, need clarification if it matters)
* appeasing the great pre-commit formatter
* Updated whatsnew
* Docstring adjustment
* Moved self.subplot check to a seperate bool
* Added ignore where mypy thinks self.subplots is a bool
* Actually addressed mypy typing
* Incorperated initial PR comments
* Updated missing () after .all
* Initial test cases
* Addressed more comments on PR
* Updated '&' to 'and'
* Updated Test cases
* Fixed crash when "subplots=True" is used
* Title check checks for subplot length if specified
* Updated Test cases
* Title check checks for subplot length if specified
* Updated test name
* Removed extra '_' in test name
* Fixed issue where expected_total_height returns as a df instead of a series
* Updated change notes
* Addressed mypy error
* Addresed PR comments
* Changed exception message raised and updated test case
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v3.0.0.rst
+1
Original file line number
Diff line number
Diff line change
@@ -801,6 +801,7 @@ Plotting
801
801
- Bug in :meth:`DataFrame.plot.bar` with ``stacked=True`` where labels on stacked bars with zero-height segments were incorrectly positioned at the base instead of the label position of the previous segment (:issue:`59429`)
802
802
- Bug in :meth:`DataFrame.plot.line` raising ``ValueError`` when set both color and a ``dict`` style (:issue:`59461`)
803
803
- Bug in :meth:`DataFrame.plot` that causes a shift to the right when the frequency multiplier is greater than one. (:issue:`57587`)
804
+
- Bug in :meth:`DataFrame.plot` where ``title`` would require extra titles when plotting more than one column per subplot. (:issue:`61019`)
804
805
- Bug in :meth:`Series.plot` preventing a line and bar from being aligned on the same plot (:issue:`61161`)
805
806
- Bug in :meth:`Series.plot` preventing a line and scatter plot from being aligned (:issue:`61005`)
806
807
- Bug in :meth:`Series.plot` with ``kind="pie"`` with :class:`ArrowDtype` (:issue:`59192`)
0 commit comments