Skip to content

BUG: Pandas 1.2 the clip method does not support Float64Dtype with pd.NA #40581

Closed
@jaspersival

Description

@jaspersival
  • I have checked that this issue has not already been reported.

  • I have confirmed this bug exists on the latest version of pandas.

  • (optional) I have confirmed this bug exists on the master branch of pandas.


Note: Please read this guide detailing how to provide the necessary information for us to reproduce your bug.

Code Sample, a copy-pastable example

series = pd.Series([pd.NA, 1.0, 2.5], dtype=pd.Float64Dtype())
series.clip(upper=2.0)

Problem description

Pandas 1.2 cannot handle pd.NA values when the series has a Float64Dtype. When running the code snipped above, the following error occurs:
Traceback (most recent call last):
File "", line 1, in
File "C:\Users\XXX\AppData\Local\pypoetry\Cache\virtualenvs\XXX-w19Rd76b-py3.9\lib\site-packages\pandas\core\generic.py", line 7711, in clip
return self._clip_with_scalar(lower, upper, inplace=inplace)
File "C:\Users\XXX\AppData\Local\pypoetry\Cache\virtualenvs\XXX-w19Rd76b-py3.9\lib\site-packages\pandas\core\generic.py", line 7562, in _clip_with_scalar
subset = self.to_numpy() <= upper
File "pandas_libs\missing.pyx", line 360, in pandas._libs.missing.NAType.bool
TypeError: boolean value of NA is ambiguous

Expected Output

pd.Series([pd.NA, 1.0, 2.0], dtype=pd.Float64Dtype)

Output of pd.show_versions()

INSTALLED VERSIONS

commit : f2c8480
python : 3.9.1.final.0
python-bits : 64
OS : Windows
OS-release : 10
Version : 10.0.19041
machine : AMD64
processor : Intel64 Family 6 Model 85 Stepping 4, GenuineIntel
byteorder : little
LC_ALL : None
LANG : None
LOCALE : English_United States.1252
pandas : 1.2.3
numpy : 1.20.1
pytz : 2021.1
dateutil : 2.8.1
pip : 21.0.1
setuptools : 52.0.0
Cython : None
pytest : 6.2.2
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : 2.11.3
IPython : None
pandas_datareader: None
bs4 : None
bottleneck : None
fsspec : None
fastparquet : None
gcsfs : None
matplotlib : None
numexpr : None
odfpy : None
openpyxl : 3.0.7
pandas_gbq : None
pyarrow : None
pyxlsb : None
s3fs : None
scipy : 1.6.1
sqlalchemy : 1.4.2
tables : None
tabulate : None
xarray : None
xlrd : 1.2.0
xlwt : None
numba : None

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions