-
-
Notifications
You must be signed in to change notification settings - Fork 18.1k
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
Multiple aggregations with DatetimeIndexResamplerGroupby raises #18970
Comments
this is the same as #15072, but slightly different end effects. |
Whoops, yep. I'll add this example to that issue. |
Reference to this issue was added to #15702 as noted above - i.e. "this is the same as #15072, but slightly different end effects". df.groupby('City').resample('D').agg('mean') # works fine df.groupby('City').resample('D').agg(['mean', 'count']) # doesn't Any chance someone can have a look at this? |
this is in not yet released 0.24.0 |
Thanks. I got my dates and major releases confused. |
When I run the same code as the OP I get a
|
Same here, getting a recursion error. |
On master, doing a
groupby().resample.agg
with multiple aggfuncs fails.A single aggfunc is OK.
The text was updated successfully, but these errors were encountered: