Skip to content

Commit d0b1e16

Browse files
gsyqaxMarcoGorelli
andcommitted
Update pandas/plotting/_core.py
Co-authored-by: Marco Gorelli <33491632+MarcoGorelli@users.noreply.github.com>
1 parent cda5819 commit d0b1e16

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

doc/source/whatsnew/v1.1.0.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,6 @@ Plotting
804804
- :func:`.plot` for line/bar now accepts color by dictonary (:issue:`8193`).
805805
- Bug in :meth:`DataFrame.plot.hist` where weights are not working for multiple columns (:issue:`33173`)
806806
- Bug in :meth:`DataFrame.boxplot` and :meth:`DataFrame.plot.boxplot` lost color attributes of ``medianprops``, ``whiskerprops``, ``capprops`` and ``medianprops`` (:issue:`30346`)
807-
- Bug in :meth:`DataFrame.boxplot` where there is a missing import in a code example (:issue:`28903`)
808807
- Bug in :meth:`DataFrame.hist` where the order of ``column`` argument was ignored (:issue:`29235`)
809808
- Bug in :meth:`DataFrame.plot.scatter` that when adding multiple plots with different ``cmap``, colorbars alway use the first ``cmap`` (:issue:`33389`)
810809

pandas/plotting/_core.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,8 @@ def boxplot_frame_groupby(
560560
>>> df = pd.DataFrame(data, columns=list('ABCD'), index=index)
561561
>>> grouped = df.groupby(level='lvl1')
562562
>>> boxplot_frame_groupby(grouped, rot=45, fontsize=12)
563-
The ``subplots=False`` option shows the boxplots in a single figure.
563+
564+
The ``subplots=False`` option shows the boxplots in a single figure.
564565
565566
.. plot::
566567
:context: close-figs

0 commit comments

Comments
 (0)