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
when pandas has a null column,compare will get a False,
import duckdb as dd df=dd.sql("select null as id").df() df['id']>1
0 False Name: id, dtype: bool
but change to arrow, will get NA, how to get False?
import pyarrow as pa import pandas as pd df2=pa.Table.from_pandas(df).to_pandas(types_mapper=pd.ArrowDtype,use_threads=True) df2['id']>1
0 Name: id, dtype: bool[pyarrow]
Python
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the bug, including details regarding any error messages, version, and platform.
when pandas has a null column,compare will get a False,
0 False
Name: id, dtype: bool
but change to arrow, will get NA, how to get False?
0
Name: id, dtype: bool[pyarrow]
Component(s)
Python
The text was updated successfully, but these errors were encountered: