|
401 | 401 | set to True, nullable dtypes are used for all dtypes that have a nullable
|
402 | 402 | implementation, even if no nulls are present.
|
403 | 403 |
|
404 |
| - The nullable dtype implementation can be configured by calling |
405 |
| - ``pd.set_option("mode.dtype_backend", "pandas")`` to use |
406 |
| - numpy-backed nullable dtypes or |
407 |
| - ``pd.set_option("mode.dtype_backend", "pyarrow")`` to use |
408 |
| - pyarrow-backed nullable dtypes (using ``pd.ArrowDtype``). |
409 |
| - This is only implemented for the ``pyarrow`` or ``python`` |
410 |
| - engines. |
| 404 | + .. note:: |
| 405 | +
|
| 406 | + The nullable dtype implementation can be configured by calling |
| 407 | + ``pd.set_option("mode.dtype_backend", "pandas")`` to use |
| 408 | + numpy-backed nullable dtypes or |
| 409 | + ``pd.set_option("mode.dtype_backend", "pyarrow")`` to use |
| 410 | + pyarrow-backed nullable dtypes (using ``pd.ArrowDtype``). |
| 411 | + This is only implemented for the ``pyarrow`` or ``python`` |
| 412 | + engines. |
411 | 413 |
|
412 | 414 | .. versionadded:: 2.0
|
413 | 415 |
|
@@ -1283,6 +1285,16 @@ def read_fwf(
|
1283 | 1285 | set to True, nullable dtypes are used for all dtypes that have a nullable
|
1284 | 1286 | implementation, even if no nulls are present.
|
1285 | 1287 |
|
| 1288 | + .. note:: |
| 1289 | +
|
| 1290 | + The nullable dtype implementation can be configured by calling |
| 1291 | + ``pd.set_option("mode.dtype_backend", "pandas")`` to use |
| 1292 | + numpy-backed nullable dtypes or |
| 1293 | + ``pd.set_option("mode.dtype_backend", "pyarrow")`` to use |
| 1294 | + pyarrow-backed nullable dtypes (using ``pd.ArrowDtype``). |
| 1295 | + This is only implemented for the ``pyarrow`` or ``python`` |
| 1296 | + engines. |
| 1297 | +
|
1286 | 1298 | .. versionadded:: 2.0
|
1287 | 1299 |
|
1288 | 1300 | **kwds : optional
|
|
0 commit comments