-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: DatetimeIndex + arraylike of DateOffsets #18849
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 8 commits
01316c1
81cdc41
179e640
30c7ef6
e58849a
2fbebc9
4160c07
e3c6d8e
ecb2fe9
0f233ba
ca8c38c
d8d0af6
81c4fbf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -363,6 +363,48 @@ def test_datetimeindex_sub_timestamp_overflow(self): | |
with pytest.raises(OverflowError): | ||
dtimin - variant | ||
|
||
@pytest.mark.parametrize('box', [np.array, pd.Index]) | ||
def test_dti_add_offset_array(self, tz, box): | ||
dti = pd.date_range('2017-01-01', periods=2, tz=tz) | ||
# TODO: check that `name` propogates correctly | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reference issue number below all of your new tests. |
||
other = box([pd.offsets.MonthEnd(), pd.offsets.Day(n=2)]) | ||
res = dti + other | ||
expected = DatetimeIndex([dti[n] + other[n] for n in range(len(dti))], | ||
name=dti.name, freq='infer') | ||
tm.assert_index_equal(res, expected) | ||
|
||
res2 = other + dti | ||
tm.assert_index_equal(res2, expected) | ||
|
||
@pytest.mark.parametrize('box', [np.array, pd.Index]) | ||
def test_dti_sub_offset_array(self, tz, box): | ||
# GH#18824 | ||
dti = pd.date_range('2017-01-01', periods=2, tz=tz) | ||
other = box([pd.offsets.MonthEnd(), pd.offsets.Day(n=2)]) | ||
res = dti - other | ||
expected = DatetimeIndex([dti[n] - other[n] for n in range(len(dti))], | ||
name=dti.name, freq='infer') | ||
tm.assert_index_equal(res, expected) | ||
|
||
def test_dti_with_offset_series(self, tz): | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you parametrize this with name (None, same name, other name) to make sure they are propagated correctly. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good call. Looks like Series.op(Index) was always taking on the name of the Series. |
||
# GH#18824 | ||
dti = pd.date_range('2017-01-01', periods=2, tz=tz) | ||
other = pd.Series([pd.offsets.MonthEnd(), pd.offsets.Day(n=2)], | ||
name='foo') | ||
|
||
expected_add = pd.Series([dti[n] + other[n] for n in range(len(dti))], | ||
name='foo') | ||
res = dti + other | ||
tm.assert_series_equal(res, expected_add) | ||
res2 = other + dti | ||
tm.assert_series_equal(res2, expected_add) | ||
|
||
expected_sub = pd.Series([dti[n] - other[n] for n in range(len(dti))], | ||
name='foo') | ||
|
||
res3 = dti - other | ||
tm.assert_series_equal(res3, expected_sub) | ||
|
||
|
||
# GH 10699 | ||
@pytest.mark.parametrize('klass,assert_func', zip([Series, DatetimeIndex], | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
use this PR number here (as 18224 is a very general reference). Is there any issue for this one specifically? (don't create one, just if there is an open one).