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/v0.24.0.rst
+8
Original file line number
Diff line number
Diff line change
@@ -32,6 +32,11 @@ Optional Integer NA Support
32
32
Pandas has gained the ability to hold integer dtypes with missing values. This long requested feature is enabled through the use of :ref:`extension types <extending.extension-types>`.
33
33
Here is an example of the usage.
34
34
35
+
.. note::
36
+
37
+
IntegerArray is currently experimental. Its API or implementation may
38
+
change without warning.
39
+
35
40
We can construct a ``Series`` with the specified dtype. The dtype string ``Int64`` is a pandas ``ExtensionDtype``. Specifying a list or array using the traditional missing value
36
41
marker of ``np.nan`` will infer to integer dtype. The display of the ``Series`` will also use the ``NaN`` to indicate missing values in string outputs. (:issue:`20700`, :issue:`20747`, :issue:`22441`, :issue:`21789`, :issue:`22346`)
37
42
@@ -213,6 +218,9 @@ from the ``Series``:
213
218
ser.array
214
219
pser.array
215
220
221
+
These return an instance of :class:`IntervalArray` or :class:`arrays.PeriodArray`,
222
+
the new extension arrays that back interval and period data.
223
+
216
224
.. warning::
217
225
218
226
For backwards compatibility, :attr:`Series.values` continues to return
0 commit comments