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
parallel_apply is not working when using pandas >= 2.1. In my case, I am using it after a groupby.
Progress bar doesn't show up, the processing seems to be run sequentially (according to Activty Monitor).
The text was updated successfully, but these errors were encountered:
I am experiencing the exact issue:
Sorry, something went wrong.
Pandaral·lel is looking for a maintainer! If you are interested, please open an GitHub issue.
It works just fine for me on Pandas 2.1. Do you have a minimal code example to reproduce your bug?
Python: 3.10.13 Pandarallel: 1.6.5 Pandas: 2.1.0 Ubuntu 22.04
import pandas as pd import pandarallel pandarallel.pandarallel.initialize(nb_workers=2, progress_bar=True) df = pd.DataFrame({"foo": range(200), "bar": range(200, 400)}) df["even"] = df["foo"] % 2 == 0 assert df.groupby("even").apply(lambda x: x+1).equals(df.groupby("even").parallel_apply(lambda x: x+1))
No branches or pull requests
General
Bug description
parallel_apply is not working when using pandas >= 2.1. In my case, I am using it after a groupby.
Observed behavior
Progress bar doesn't show up, the processing seems to be run sequentially (according to Activty Monitor).
The text was updated successfully, but these errors were encountered: