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

ENH: provide nunique method on Rolling object #26958

Closed
jorisvandenbossche opened this issue Jun 20, 2019 · 1 comment · Fixed by #61087
Closed

ENH: provide nunique method on Rolling object #26958

jorisvandenbossche opened this issue Jun 20, 2019 · 1 comment · Fixed by #61087
Assignees
Labels
Enhancement Window rolling, ewma, expanding

Comments

@jorisvandenbossche
Copy link
Member

GroupBy objects expose a nunique method of Series/DataFrame (and also for resample it works), but Rolling does not:

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.

@snitish
Copy link
Member

snitish commented Mar 8, 2025

take

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Enhancement Window rolling, ewma, expanding
Projects
None yet
Development

Successfully merging a pull request may close this issue.

3 participants