-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: CONTAINS_OP run on pd.NA results in pd.NAType.__bool__ call #57989
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
Thanks for the report - this is a consequence of having comparisons return pd.NA:
When Python checks "is pd.NA == 1", the result is NA, which Python then evaluates the truthiness of this result, giving you the TypeError as reported. As long as we are returning pd.NA on comparisons, I do not believe anything can be done here. |
We intend to change this to return false (discussed in Basel), should probably get this into 3.0 |
take |
@phofl Would this change only apply for boolean ops or do you anticipating changing the behavior of numerical ops like |
not it's only bool(pd.NA) that we want to change. @20revsined this is probably not a good issue for a beginner in pandas |
I don't know if my issue is related to this, please remove my comment if not! I have a function which gives me the following output (pd df):
column dtypes are: To be precise: timestamp and duration hold numerics plus nans, trial_type holds strings plus nans, blink holds numerics (0 and 1) plus nans, and message hold strings plus nans. Now I wrote a unit test to test the output for the first row:
And the list obviously looks like this: [9199380, <NA>, nan, <NA>, 'RECORD_START'] I get the following error when running the test:
So I guess I cannot use How I can check if pd.NAs s in the dataframe exist? I tried changing the dtypes so that every column has the dtype 'object'. However, that's not really what I want. |
While somewhat related, this:
is more of a usage question. Please try asking on StackOverflow first - if you don't get your question resolved in a few days, open a new issue here and link to your SO post. We do this as otherwise we fear our issue tracker would be flooded with usage questions. |
Great, thank you for your reply! I already asked on SO a couple of days ago. I'll wait a bit more and then do as you asked if I don't get it resolved otherwise :-) |
Pandas version checks
I have checked that this issue has not already been reported.
I have confirmed this bug exists on the latest version of pandas.
I have confirmed this bug exists on the main branch of pandas.
Reproducible Example
Issue Description
checking for
pd.NA
existence in a list results inTypeError: boolean value of NA is ambiguous
.Why is performing
in
operation calls__bool__
method of thepd.NAType
class?Seems a bit similar to the issue regarding incorrect implementation of some operators: #49828
Expected Behavior
Checking for existence of
pd.NA
type in any container should correctly return eitherTrue
orFalse
Installed Versions
INSTALLED VERSIONS
commit : bdc79c1
python : 3.10.13.final.0
python-bits : 64
OS : Darwin
OS-release : 23.2.0
Version : Darwin Kernel Version 23.2.0: Wed Nov 15 21:55:06 PST 2023; root:xnu-10002.61.3~2/RELEASE_ARM64_T6020
machine : x86_64
processor : i386
byteorder : little
LC_ALL : None
LANG : None
LOCALE : None.UTF-8
pandas : 2.2.1
numpy : 1.26.3
pytz : 2024.1
dateutil : 2.8.2
setuptools : 68.2.2
pip : 23.3.1
Cython : None
pytest : 8.0.0
hypothesis : None
sphinx : None
blosc : None
feather : None
xlsxwriter : None
lxml.etree : None
html5lib : None
pymysql : None
psycopg2 : None
jinja2 : None
IPython : None
pandas_datareader : None
adbc-driver-postgresql: None
adbc-driver-sqlite : None
bs4 : None
bottleneck : None
dataframe-api-compat : None
fastparquet : None
fsspec : None
gcsfs : None
matplotlib : None
numba : None
numexpr : None
odfpy : None
openpyxl : None
pandas_gbq : None
pyarrow : None
pyreadstat : None
python-calamine : None
pyxlsb : None
s3fs : None
scipy : 1.12.0
sqlalchemy : None
tables : None
tabulate : 0.9.0
xarray : None
xlrd : None
zstandard : None
tzdata : 2024.1
qtpy : None
pyqt5 : None
The text was updated successfully, but these errors were encountered: