We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 321743f commit cfcfddbCopy full SHA for cfcfddb
doc/source/whatsnew/v0.18.0.txt
@@ -200,6 +200,7 @@ Other enhancements
200
- ``Series`` gained an ``is_unique`` attribute (:issue:`11946`)
201
- ``DataFrame.quantile`` and ``Series.quantile`` now accept ``interpolation`` keyword (:issue:`10174`).
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`)
204
205
.. _whatsnew_0180.api_breaking:
206
pandas/tools/tests/test_pivot.py
@@ -737,6 +737,7 @@ def test_pivot_dtaccessor(self):
737
tm.assert_frame_equal(result, expected)
738
739
def test_pivot_table_with_iterator_values(self):
740
+ # GH 12017
741
aggs = {'D': 'sum', 'E': 'mean'}
742
743
pivot_values_list = pd.pivot_table(
0 commit comments