Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions doc/source/v0.15.0.txt
Original file line number Diff line number Diff line change
Expand Up @@ -257,6 +257,8 @@ API changes

- Added support for numpy 1.8+ data types (bool_, int_, float_, string_) for conversion to R dataframe (:issue:`8400`)

- ``DataFrame.plot`` and ``Series.plot`` keywords are now have consistent orders (:issue:`8037`)

.. _whatsnew_0150.dt:

.dt accessor
Expand Down
3 changes: 3 additions & 0 deletions pandas/tests/test_graphics.py
Original file line number Diff line number Diff line change
Expand Up @@ -2784,6 +2784,9 @@ def test_pie_df(self):
ax = _check_plot_works(df.plot, kind='pie', y='Y')
self._check_text_labels(ax.texts, df.index)

ax = _check_plot_works(df.plot, kind='pie', y=2)
self._check_text_labels(ax.texts, df.index)

axes = _check_plot_works(df.plot, kind='pie', subplots=True)
self.assertEqual(len(axes), len(df.columns))
for ax in axes:
Expand Down
Loading