Skip to content
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

implement+test mean for datetimelike EA/Index/Series #24757

Merged
merged 44 commits into from
Jun 10, 2019
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
434e2cd
implement+test mean for datetimelike EA/Index/Series
jbrockmendel Jan 13, 2019
c8abf33
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Jan 14, 2019
30eeb64
update imports
jbrockmendel Jan 14, 2019
d48e2ef
isort fixup
jbrockmendel Jan 14, 2019
0e32be2
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Jan 14, 2019
231458d
params for docstring
jbrockmendel Jan 14, 2019
1129e8c
test for numeric_only
jbrockmendel Jan 14, 2019
38f829a
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Jan 16, 2019
aba90ec
copy/paste fixup
jbrockmendel Jan 16, 2019
176b355
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Jan 17, 2019
ccb790b
Disable for PeriodArray
jbrockmendel Jan 17, 2019
4f4cb6d
Delete assertions missed in previous commit
jbrockmendel Jan 17, 2019
ec83db1
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Jan 17, 2019
5fb1db9
xfail numeric_only=False case
jbrockmendel Jan 17, 2019
028c789
Merge branch 'means' of https://github.com/jbrockmendel/pandas into m…
jbrockmendel Jan 17, 2019
50e714e
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Jan 29, 2019
1b24e7d
add todo comment
jbrockmendel Jan 29, 2019
4d40906
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Jan 29, 2019
a49da37
dont expect datetime in dataframe.mean
jbrockmendel Jan 29, 2019
94d3466
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Feb 1, 2019
e4e6a03
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Feb 7, 2019
7953a7b
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Feb 11, 2019
15307da
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Feb 18, 2019
da719e1
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Feb 22, 2019
637b415
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Feb 28, 2019
58bca36
whatsnew
jbrockmendel Feb 28, 2019
abcb87a
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Mar 3, 2019
4df0b1c
add versionadded
jbrockmendel Mar 3, 2019
c9736d7
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Mar 9, 2019
d2f5e6f
change NotImplementedError to TypeError
jbrockmendel Mar 9, 2019
de9025c
add mean to class docstrings and docs/source/reference/indexing.rst
jbrockmendel Mar 9, 2019
4c553a9
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Mar 14, 2019
330fc41
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Mar 20, 2019
7c6201b
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Apr 5, 2019
642d4e2
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Apr 12, 2019
7b9fd42
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Apr 20, 2019
4be012f
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel May 12, 2019
5682b65
remove axis keyword for now
jorisvandenbossche May 14, 2019
581ff1a
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel May 14, 2019
34a83a4
Merge branch 'means' of https://github.com/jbrockmendel/pandas into m…
jbrockmendel May 14, 2019
14150ee
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel May 16, 2019
450c8ce
don't pass axis to methods
jorisvandenbossche May 16, 2019
3e31ca1
add returns to docstring
jorisvandenbossche May 16, 2019
111c345
Merge branch 'master' of https://github.com/pandas-dev/pandas into means
jbrockmendel Jun 3, 2019
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
28 changes: 28 additions & 0 deletions pandas/core/arrays/datetimelike.py
Original file line number Diff line number Diff line change
Expand Up @@ -1435,6 +1435,34 @@ def max(self, axis=None, skipna=True, *args, **kwargs):
# Don't have to worry about NA `result`, since no NA went in.
return self._box_func(result)

def mean(self, axis=None, skipna=True):
jreback marked this conversation as resolved.
Show resolved Hide resolved
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we want to add an axis argument here?
I know we have already added in some places, but also not added in other places, so probably something we should discuss.

I would personally try to not add too much overhead in additional useless kwargs just for matching signatures, if they can be avoided.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIRC, this lets us hook into np.mean, but we should verify exactly which kwargs are necessary.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, that's why we did it in the past (but for that we also need the additional kwargs). But, for EAs, we could also decide to implement the array function protocol to achieve this goal, which might obviate the need to add the additional kwargs

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@jbrockmendel i think its worthile here to allow calling np.mean

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

don'e we also need out=? meaning we should just accept kwargs like we do for Series.mean

"""
Return the mean value of the Array or maximum along
jbrockmendel marked this conversation as resolved.
Show resolved Hide resolved
an axis.

TomAugspurger marked this conversation as resolved.
Show resolved Hide resolved
See Also
--------
numpy.ndarray.mean
Series.mean : Return the mean value in a Series.
"""
nv.validate_minmax_axis(axis)

mask = self.isna()
if skipna:
values = self[~mask]
elif mask.any():
return NaT
else:
values = self

if not len(values):
# short-circut for empty max / min
return NaT

result = nanops.nanmean(values.view('i8'), skipna=skipna)
# Don't have to worry about NA `result`, since no NA went in.
return self._box_func(result)


# -------------------------------------------------------------------
# Shared Constructor Helpers
Expand Down
1 change: 1 addition & 0 deletions pandas/core/indexes/datetimelike.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class DatetimeIndexOpsMixin(ExtensionOpsMixin):
_maybe_mask_results = ea_passthrough(
DatetimeLikeArrayMixin._maybe_mask_results)
__iter__ = ea_passthrough(DatetimeLikeArrayMixin.__iter__)
mean = ea_passthrough(DatetimeLikeArrayMixin.mean)

@property
def freq(self):
Expand Down
3 changes: 3 additions & 0 deletions pandas/core/series.py
Original file line number Diff line number Diff line change
Expand Up @@ -3614,6 +3614,9 @@ def _reduce(self, op, name, axis=0, skipna=True, numeric_only=None,
elif is_datetime64_dtype(delegate):
# use DatetimeIndex implementation to handle skipna correctly
delegate = DatetimeIndex(delegate)
elif is_timedelta64_dtype(delegate) and hasattr(TimedeltaIndex, name):
jreback marked this conversation as resolved.
Show resolved Hide resolved
# use TimedeltaIndex to handle skipna correctly
delegate = TimedeltaIndex(delegate)

# dispatch to numpy arrays
elif isinstance(delegate, np.ndarray):
Expand Down
21 changes: 21 additions & 0 deletions pandas/tests/indexes/datetimes/test_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,27 @@ def test_ops_properties_basic(self):
assert s.day == 10
pytest.raises(AttributeError, lambda: s.weekday)

# TODO: figure out where in tests.reductions this belongs
def test_mean(self, tz_naive_fixture):
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

seems very duplicative of the test below, is there a reason?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

bc at the time when this was written Index reduction tests had not been collected in tests.reductions. Will move/de-duplicate.

tz = tz_naive_fixture
idx1 = pd.DatetimeIndex(['2011-01-01', '2011-01-02',
'2011-01-03'], tz=tz)
assert idx1.mean() == pd.Timestamp('2011-01-02', tz=tz)
assert idx1._data.mean() == pd.Timestamp('2011-01-02', tz=tz)

idx2 = pd.DatetimeIndex(['2011-01-01', '2011-01-02', pd.NaT,
'2011-01-03'], tz=tz)
assert idx2.mean(skipna=False) is pd.NaT
assert idx2._data.mean(skipna=False) is pd.NaT
assert idx2.mean(skipna=True) == idx2[1]
assert idx2._data.mean(skipna=True) == idx2[1]

idx3 = pd.DatetimeIndex([])
assert idx3.mean() is pd.NaT
assert idx3._data.mean() is pd.NaT
assert idx3.mean(skipna=False) is pd.NaT
assert idx3._data.mean(skipna=False) is pd.NaT

def test_minmax_tz(self, tz_naive_fixture):
tz = tz_naive_fixture
# monotonic
Expand Down
65 changes: 65 additions & 0 deletions pandas/tests/reductions/test_stat_reductions.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,74 @@

import pandas as pd
from pandas import DataFrame, Series, compat
from pandas.core.arrays import DatetimeArray, PeriodArray, TimedeltaArray
import pandas.util.testing as tm


class TestDatetimeLikeStatReductions(object):
@pytest.mark.parametrize('box', [Series, pd.Index, DatetimeArray])
@pytest.mark.parametrize('tz', [None, 'US/Mountain'])
def test_dt64_mean(self, tz, box):
dti = pd.date_range('2001-01-01', periods=11, tz=tz)
# shuffle so that we are not just working with monotone-increasing
dti = dti.take([4, 1, 3, 10, 9, 7, 8, 5, 0, 2, 6])
dtarr = dti._data

obj = box(dtarr)
assert obj.mean() == pd.Timestamp('2001-01-06', tz=tz)
assert obj.mean(skipna=False) == pd.Timestamp('2001-01-06', tz=tz)

# dtarr[-2] will be the first date 2001-01-1
dtarr[-2] = pd.NaT

obj = box(dtarr)
assert obj.mean() == pd.Timestamp('2001-01-06 07:12:00', tz=tz)
assert obj.mean(skipna=False) is pd.NaT

@pytest.mark.parametrize('box', [Series, pd.Index, PeriodArray])
def test_period_mean(self, box):
dti = pd.date_range('2001-01-01', periods=11)
# shuffle so that we are not just working with monotone-increasing
dti = dti.take([4, 1, 3, 10, 9, 7, 8, 5, 0, 2, 6])

# use hourly frequency to avoid rounding errors in expected results
jreback marked this conversation as resolved.
Show resolved Hide resolved
# TODO: flesh this out with different frequencies
parr = dti._data.to_period('H')
obj = box(parr)
assert obj.mean() == pd.Period('2001-01-06', freq='H')
assert obj.mean(skipna=False) == pd.Period('2001-01-06', freq='H')

# parr[-2] will be the first date 2001-01-1
parr[-2] = pd.NaT

# with rounding, we get the period containing the result
# for the dt64 case above
obj = box(parr)
assert obj.mean() == pd.Period('2001-01-06 07:00', freq='H')
assert obj.mean(skipna=False) is pd.NaT

@pytest.mark.parametrize('box', [Series, pd.Index, TimedeltaArray])
def test_td64_mean(self, box):
tdi = pd.TimedeltaIndex([0, 3, -2, -7, 1, 2, -1, 3, 5, -2, 4],
unit='D')

tdarr = tdi._data
obj = box(tdarr)

result = obj.mean()
expected = np.array(tdarr).mean()
assert result == expected

tdarr[0] = pd.NaT
assert obj.mean(skipna=False) is pd.NaT

result2 = obj.mean(skipna=True)
assert result2 == tdi[1:].mean()

# exact equality fails by 1 nanosecond
assert result2.round('us') == (result * 11. / 10).round('us')


class TestSeriesStatReductions(object):
# Note: the name TestSeriesStatReductions indicates these tests
# were moved from a series-specific test file, _not_ that these tests are
Expand Down