You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is this issue still planned for a future major release ?
I'm currently building a library over Pandas at my job and having the possibility to call "ewm" on a SeriesGroupBy object would reduce the complexity of my code.
Also on a performance standpoint, I've recently come across issues when grouping my data by more than one columns (which leaded to the creation of around two million groups). Would having the "ewm" function accessible directly on the SeriesGroupBy object be beneficial for the execution speed ? I imagine it would take some kind of "fast path" in the execution process by not having to call a lambda function (grouped.transform(lambda x: x.ewm...)) for each group.
Yeah I have to feeling it's been forgotten over the years. How hard is it to implement such a feature ? Am I right thinking the performances would be better ? Maybe I could have a look at it someday.
would be nice to support
.groupby().ewm()
directly.The text was updated successfully, but these errors were encountered: