-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
Inconsistency in some calculations in pd.DataFrames with large number of rows #11346
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
Comments
why would you use |
only difference is you have a locale setting (e.g. |
I use them indistinctively.
|
can't repro (see above). if you eventually figure it out pls reopen. |
how did you install? I assume you didn't compile this yourself (and instead used a wheel/conda) |
Yes, I have installed everything using conda. I have tried also in 2 different PCs (both win64) with the same results. PD: Have you tried at least a few executions? Sometimes I don't get it at the first tries. |
yep. try a clean conda environment. if you can repro then show the steps |
OK, using a new environment with only pandas + dependencies it works well. Thanks!!! It was not obvious to see this issue at all. I fear for my previous work... Can it be a |
I would say that you have multiple installlations of anaconda/miniconda. If you dont have a particular library installed then it will pick up from the other installation (if you have both on the path). so clean up your path. |
just try upgrading numexpr lots of calculation defer to numexpr |
That's it, with numexpr=2.5 it works well. Just confirming it for the record. |
Strange behaviour that appears only with a large number of rows.
This bug appears randomly, but using this combination (4 columns, 500k rows and 25 repetitions) I can see it at least once almost all the executions.
I have tried several
Pandas
versions (0.13-0.17) withPython 3.4
and the bug is still there.HOWEVER, using
Python 2.7
it works prefectly (at least after several executions).The text was updated successfully, but these errors were encountered: