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 e2f988d commit f3f5411Copy full SHA for f3f5411
pandas/tests/resample/test_resampler_grouper.py
@@ -533,7 +533,7 @@ def test_groupby_resample_empty_sum_string(
533
# https://github.com/pandas-dev/pandas/issues/60229
534
dtype = string_dtype_no_object
535
test_frame = test_frame.assign(B=pd.array([pd.NA] * len(test_frame), dtype=dtype))
536
- gbrs = test_frame.groupby("A").resample("40s")
+ gbrs = test_frame.groupby("A").resample("40s", include_groups=False)
537
result = gbrs.sum(min_count=min_count)
538
539
index = pd.MultiIndex(
0 commit comments