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
It would be nice to have the possibility to do parallel processing using joblib when applying something to a groupby. I'm dreaming about a parallel optional argument which defaults to False.
I think it's best to have that parallel argument while grouping
The only option I have now is to make list on the groupby results, apply a function on that list using joblib, and concatenate the results. It leads to unefficient and difficult to read code.
duplicate of #13111 this is non-trivial and should only have an api in pandas not an actual implementation, this is currently possible via dask (though not directly thru a pandas api).
Certainly would take a PR, but this is a fairly large effort / surface area.
Hello,
It would be nice to have the possibility to do parallel processing using
joblib
when applying something to a groupby. I'm dreaming about aparallel
optional argument which defaults toFalse
.I think it's best to have that parallel argument while grouping
The only option I have now is to make list on the groupby results, apply a function on that list using joblib, and concatenate the results. It leads to unefficient and difficult to read code.
The text was updated successfully, but these errors were encountered: