You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v2.0.0.rst
+10
Original file line number
Diff line number
Diff line change
@@ -49,6 +49,16 @@ The ``use_nullable_dtypes`` keyword argument has been expanded to the following
49
49
* :func:`read_feather`
50
50
* :func:`to_numeric`
51
51
52
+
To simplify opting-in to nullable dtypes for these functions, a new option ``nullable_dtypes`` was added that allows setting
53
+
the keyword argument globally to ``True`` if not specified directly. The option can be enabled
54
+
through:
55
+
56
+
.. ipython:: python
57
+
58
+
pd.options.mode.nullable_dtypes =True
59
+
60
+
The option will only work for functions with the keyword ``use_nullable_dtypes``.
61
+
52
62
Additionally a new global configuration, ``mode.dtype_backend`` can now be used in conjunction with the parameter ``use_nullable_dtypes=True`` in the following functions
0 commit comments