File tree 2 files changed +2
-0
lines changed
2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -200,6 +200,7 @@ Other enhancements
200
200
- ``Series`` gained an ``is_unique`` attribute (:issue:`11946`)
201
201
- ``DataFrame.quantile`` and ``Series.quantile`` now accept ``interpolation`` keyword (:issue:`10174`).
202
202
- ``DataFrame.select_dtypes`` now allows the ``np.float16`` typecode (:issue:`11990`)
203
+ - ``pivot_table()`` now accepts most iterables for the ``values`` parameter (:issue:`12017`)
203
204
204
205
.. _whatsnew_0180.api_breaking:
205
206
Original file line number Diff line number Diff line change @@ -737,6 +737,7 @@ def test_pivot_dtaccessor(self):
737
737
tm .assert_frame_equal (result , expected )
738
738
739
739
def test_pivot_table_with_iterator_values (self ):
740
+ # GH 12017
740
741
aggs = {'D' : 'sum' , 'E' : 'mean' }
741
742
742
743
pivot_values_list = pd .pivot_table (
You can’t perform that action at this time.
0 commit comments