We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a5016 commit 790262aCopy full SHA for 790262a
pandas/core/config_init.py
@@ -894,8 +894,10 @@ def register_converter_cb(key: str) -> None:
894
cf.register_option(
895
"distinguish_nan_and_na",
896
os.environ.get("PANDAS_FUTURE_DISTINGUISH_NAN_AND_NA", "0") == "1",
897
- "Whether to treat NaN entries as interchangeable with pd.NA in "
898
- "numpy-nullable and pyarrow float dtypes. See discussion in "
+ "Whether to treat NaN entries as distinct from pd.NA in "
+ "numpy-nullable and pyarrow float dtypes. By default treats both "
899
+ "interchangeable as missing values (NaN will be coerced to NA). "
900
+ "See discussion in "
901
"https://github.com/pandas-dev/pandas/issues/32265",
902
validator=is_one_of_factory([True, False]),
903
)
0 commit comments