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 @@ -152,6 +152,7 @@ Other enhancements
152
152
- ``Series`` gained an ``is_unique`` attribute (:issue:`11946`)
153
153
- ``DataFrame.quantile`` and ``Series.quantile`` now accept ``interpolation`` keyword (:issue:`10174`).
154
154
- ``DataFrame.select_dtypes`` now allows the ``np.float16`` typecode (:issue:`11990`)
155
+ - ``pivot_table()`` now accepts most iterables for the ``values`` parameter (:issue:`12017`)
155
156
156
157
.. _whatsnew_0180.enhancements.rounding:
157
158
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