8000 WIP: implement reductions for DatetimeArray/TimedeltaArray/PeriodArray by jbrockmendel · Pull Request #23890 · pandas-dev/pandas · GitHub
[go: up one dir, main page]

Skip to content

WIP: implement reductions for DatetimeArray/TimedeltaArray/PeriodArray #23890

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

Closed
wants to merge 5 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
comment for series case
  • Loading branch information
jbrockmendel committed Nov 25, 2018
commit 167989c9346dc6dfc3a387c8a4a6df76c75d4a01
2 changes: 1 addition & 1 deletion pandas/tests/series/test_analytics.py
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ def test_reductions_datetime64(self, tz):

assert NaT in dti
assert NaT in dtarr
# assert NaT in ds # FIXME: fails
# it is not the case that `NaT in ds`

for obj in [dti, ds, dtarr]:
assert obj.mean(skipna=True) == Timestamp('2001-01-06', tz=tz)
Expand Down
0