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 794f792 commit dfd3e09Copy full SHA for dfd3e09
pandas/tests/test_groupby.py
@@ -442,6 +442,11 @@ def test_grouper_creation_bug(self):
442
result = g.sum()
443
assert_frame_equal(result, expected)
444
445
+ # GH14334
446
+ g = df.groupby([pd.Grouper(key='A')])
447
+ result = g.sum()
448
+ assert_frame_equal(result, expected)
449
+
450
# GH8866
451
s = Series(np.arange(8, dtype='int64'),
452
index=pd.MultiIndex.from_product(
0 commit comments