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 f7a6c21 commit b90a86cCopy full SHA for b90a86c
pandas/tests/resample/test_datetime_index.py
@@ -694,20 +694,6 @@ def test_resample_timestamp_to_period(simple_date_range_series):
694
tm.assert_series_equal(result, expected)
695
696
697
-def test_datetime_resample_sum_min_count():
698
- # GH 19974
699
- index = date_range(start="2018", freq="M", periods=6)
700
- data = np.ones(6)
701
- data[3:6] = np.nan
702
- datetime = Series(data, index)
703
- result = datetime.resample("Q").sum(min_count=1)
704
-
705
- index = date_range("2018-03-31", "2018-06-30", freq="Q-DEC")
706
- expected = Series([3, np.nan], index)
707
708
- tm.assert_series_equal(result, expected)
709
710
711
def test_ohlc_5min():
712
def _ohlc(group):
713
if isna(group).all():
0 commit comments