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 286af66 commit aa6c637Copy full SHA for aa6c637
doc/source/whatsnew/v0.24.0.rst
@@ -50,7 +50,7 @@ marker of ``np.nan`` will infer to integer dtype. The display of the ``Series``
50
51
.. ipython:: python
52
53
- s = pd.Series([1, 2, np.nan], dtype='Int64')
+ s = pd.Series([1, 2, pd.NA], dtype='Int64')
54
s
55
56
@@ -166,7 +166,7 @@ See the :ref:`dtypes docs <basics.dtypes>` for more on extension arrays.
166
167
168
169
- pd.array([1, 2, np.nan], dtype='Int64')
+ pd.array([1, 2, pd.NA], dtype='Int64')
170
pd.array(['a', 'b', 'c'], dtype='category')
171
172
Passing data for which there isn't dedicated extension type (e.g. float, integer, etc.)
0 commit comments