File tree Expand file tree Collapse file tree 14 files changed +39
-21
lines changed Expand file tree Collapse file tree 14 files changed +39
-21
lines changed Original file line number Diff line number Diff line change @@ -1014,8 +1014,8 @@ def convert_dtypes(
1014
1014
Back-end data type applied to the resultant :class:`DataFrame`
1015
1015
(still experimental). Behaviour is as follows:
1016
1016
1017
- * ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
1018
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
1017
+ * ``"numpy_nullable"``: returns nullable-dtype
1018
+ * ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
1019
1019
1020
1020
.. versionadded:: 2.0
1021
1021
Original file line number Diff line number Diff line change @@ -6671,7 +6671,8 @@ def convert_dtypes(
6671
6671
:class:`Series` (still experimental). Behaviour is as follows:
6672
6672
6673
6673
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
6674
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
6674
+ * ``"pyarrow"``: returns pyarrow-backed nullable :class:`ArrowDtype`
6675
+ :class:`DataFrame` or :class:`Series`.
6675
6676
6676
6677
.. versionadded:: 2.0
6677
6678
Original file line number Diff line number Diff line change @@ -99,8 +99,8 @@ def to_numeric(
99
99
is to not use nullable data types. If specified, the behavior
100
100
is as follows:
101
101
102
- * ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
103
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
102
+ * ``"numpy_nullable"``: returns nullable-dtype-backed object
103
+ * ``"pyarrow"``: returns with pyarrow-backed nullable object
104
104
105
105
.. versionadded:: 2.0
106
106
Original file line number Diff line number Diff line change @@ -45,7 +45,10 @@ def read_clipboard(
45
45
is as follows:
46
46
47
47
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
48
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
48
+ * ``"pyarrow"``: returns pyarrow-backed nullable
49
+ :class:`ArrowDtype` :class:`DataFrame`
50
+
51
+
49
52
50
53
.. versionadded:: 2.0
51
54
Original file line number Diff line number Diff line change 274
274
is as follows:
275
275
276
276
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
277
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
277
+ * ``"pyarrow"``: returns pyarrow-backed nullable
278
+ :class:`ArrowDtype` :class:`DataFrame`
278
279
279
280
.. versionadded:: 2.0
280
281
@@ -1735,7 +1736,8 @@ def parse(
1735
1736
is as follows:
1736
1737
1737
1738
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
1738
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
1739
+ * ``"pyarrow"``: returns pyarrow-backed nullable
1740
+ :class:`ArrowDtype` :class:`DataFrame`
1739
1741
1740
1742
.. versionadded:: 2.0
1741
1743
**kwds : dict, optional
Original file line number Diff line number Diff line change @@ -99,7 +99,8 @@ def read_feather(
99
99
is as follows:
100
100
101
101
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`.
102
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
102
+ * ``"pyarrow"``: returns pyarrow-backed nullable
103
+ :class:`ArrowDtype` :class:`DataFrame`
103
104
104
105
.. versionadded:: 2.0
105
106
Original file line number Diff line number Diff line change @@ -1138,7 +1138,8 @@ def read_html(
1138
1138
is as follows:
1139
1139
1140
1140
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
1141
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
1141
+ * ``"pyarrow"``: returns pyarrow-backed nullable
1142
+ :class:`ArrowDtype` :class:`DataFrame`
1142
1143
1143
1144
.. versionadded:: 2.0
1144
1145
Original file line number Diff line number Diff line change @@ -659,7 +659,8 @@ def read_json(
659
659
is as follows:
660
660
661
661
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
662
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
662
+ * ``"pyarrow"``: returns pyarrow-backed nullable
663
+ :class:`ArrowDtype` :class:`DataFrame`
663
664
664
665
.. versionadded:: 2.0
665
666
Original file line number Diff line number Diff line change @@ -68,7 +68,8 @@ def read_orc(
68
68
is as follows:
69
69
70
70
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
71
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
71
+ * ``"pyarrow"``: returns pyarrow-backed nullable
72
+ :class:`ArrowDtype` :class:`DataFrame`
72
73
73
74
.. versionadded:: 2.0
74
75
Original file line number Diff line number Diff line change @@ -549,7 +549,8 @@ def read_parquet(
549
549
is as follows:
550
550
551
551
* ``"numpy_nullable"``: returns nullable-dtype-backed :class:`DataFrame`
552
- * ``"pyarrow"``: returns with pyarrow-backed nullable :class:`ArrowDtype`
552
+ * ``"pyarrow"``: returns pyarrow-backed nullable
553
+ :class:`ArrowDtype` :class:`DataFrame`
553
554
554
555
.. versionadded:: 2.0
555
556
You can’t perform that action at this time.
0 commit comments