Closed
Description
Both cudf and polars have both null and nan (and there's some discussion about having in pandas too), and they both have methods for converting nans to nulls:
- cudf:
DataFrame.nans_to_nulls
: https://docs.rapids.ai/api/cudf/stable/api_docs/api/cudf.dataframe.nans_to_nulls - polars:
.fill_nan(None)
I think we need something similar here. Perhaps fill_nans
and fill_nulls
would be most generic?