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
df.eval(...) operations fail if one of the columns involved is of type float32 and some unary operations are involved. In the example above df.eval('-1 + Foo32') failed, but df.eval('-Foo32') will succeed, and df.eval('-1*Foo32') will also fail.
Originally I tested fixing this by just adding self.value = operand.value to the UnaryOpobject, before I realized that this issue only affects float32 objects. I haven't looked to see where the code branches off to cause this misbehavior.
This was tested and reproduced on both 0.20.3 and 0.22.0
Expected Output
No exception thrown.
Output of pd.show_versions()
INSTALLED VERSIONS
commit: None
python: 3.6.3.final.0
python-bits: 64
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None
Code Sample, a copy-pastable example if possible
Problem description
df.eval(...)
operations fail if one of the columns involved is of typefloat32
and someunary
operations are involved. In the example abovedf.eval('-1 + Foo32')
failed, butdf.eval('-Foo32')
will succeed, anddf.eval('-1*Foo32')
will also fail.Originally I tested fixing this by just adding
self.value = operand.value
to theUnaryOp
object, before I realized that this issue only affectsfloat32
objects. I haven't looked to see where the code branches off to cause this misbehavior.This was tested and reproduced on both
0.20.3
and0.22.0
Expected Output
No exception thrown.
Output of
pd.show_versions()
INSTALLED VERSIONS
commit: None
python: 3.6.3.final.0
python-bits: 64
OS: Windows
OS-release: 10
machine: AMD64
processor: Intel64 Family 6 Model 79 Stepping 1, GenuineIntel
byteorder: little
LC_ALL: None
LANG: None
LOCALE: None.None
pandas: 0.22.0
pytest: 3.2.1
pip: 9.0.1
setuptools: 36.5.0.post20170921
Cython: 0.26.1
numpy: 1.12.1
scipy: 0.19.1
pyarrow: 0.7.1
xarray: None
IPython: 6.1.0
sphinx: 1.6.3
patsy: 0.4.1
dateutil: 2.6.1
pytz: 2017.2
blosc: None
bottleneck: 1.2.1
tables: 3.4.2
numexpr: 2.6.2
feather: None
matplotlib: 2.1.0
openpyxl: 2.4.8
xlrd: 1.1.0
xlwt: 1.3.0
xlsxwriter: 1.0.2
lxml: 4.1.0
bs4: 4.6.0
html5lib: 0.999999999
sqlalchemy: 1.1.13
pymysql: None
psycopg2: None
jinja2: 2.9.6
s3fs: None
fastparquet: None
pandas_gbq: None
pandas_datareader: None
The text was updated successfully, but these errors were encountered: