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.txt
+8-1
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ Pandas has gained the ability to hold integer dtypes with missing values. This l
46
46
Here is an example of the usage.
47
47
48
48
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
49
-
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`)
49
+
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`)
50
50
51
51
.. ipython:: python
52
52
@@ -89,6 +89,13 @@ These dtypes can be merged & reshaped & casted.
Reduction and groupby operations such as 'sum' work.
93
+
94
+
.. ipython:: python
95
+
96
+
df.sum()
97
+
df.groupby('B').A.sum()
98
+
92
99
.. warning::
93
100
94
101
The Integer NA support currently uses the captilized dtype version, e.g. ``Int8`` as compared to the traditional ``int8``. This may be changed at a future date.
0 commit comments