We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
GroupBy objects expose a nunique method of Series/DataFrame (and also for resample it works), but Rolling does not:
nunique
resample
In [89]: values = np.random.choice(np.arange(10), 100) In [90]: s = pd.Series(values, index=pd.date_range("2019-01-01", freq='H', periods=100)) In [92]: s.groupby(pd.Grouper(freq='D')).nunique() Out[92]: 2019-01-01 10 2019-01-02 8 2019-01-03 10 2019-01-04 10 2019-01-05 4 Freq: D, dtype: int64
vs
In [93]: s.rolling('D').apply(pd.Series.nunique, raw=False) Out[93]: 2019-01-01 00:00:00 1.0 2019-01-01 01:00:00 2.0 2019-01-01 02:00:00 3.0 ... # or In [95]: s.rolling('D').apply(lambda x: len(pd.unique(x)), raw=True) Out[95]: 2019-01-01 00:00:00 1.0 2019-01-01 01:00:00 2.0 2019-01-01 02:00:00 3.0 ...
I think it would be nice to also have this method available on rolling objects.
rolling
The text was updated successfully, but these errors were encountered:
take
Sorry, something went wrong.
snitish
Successfully merging a pull request may close this issue.
GroupBy objects expose a
nunique
method of Series/DataFrame (and also forresample
it works), but Rolling does not:vs
I think it would be nice to also have this method available on
rolling
objects.The text was updated successfully, but these errors were encountered: