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
@@ -1696,7 +1696,7 @@ introduction <categorical>` and the
1696
1696
1697
1697
dfg.groupby(["A", [0, 0, 0, 1, 1]]).ngroup()
1698
1698
1699
-
Groupby by indexer to 'resample' data
1699
+
GroupBy by indexer to 'resample' data
1700
1700
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1701
1701
1702
1702
Resampling produces new hypothetical samples (resamples) from already existing observed data or from a model that generates data. These new samples are similar to the pre-existing samples.
Previously indexing with a nullable Boolean array containing ``NA`` would raise a ``ValueError``, however this is now permitted with ``NA`` being treated as ``False``. (:issue:`31503`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v3.0.0.rst
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -592,6 +592,7 @@ Performance improvements
592
592
- Performance improvement in :meth:`RangeIndex.take` returning a :class:`RangeIndex` instead of a :class:`Index` when possible. (:issue:`57445`, :issue:`57752`)
593
593
- Performance improvement in :func:`merge` if hash-join can be used (:issue:`57970`)
594
594
- Performance improvement in :meth:`CategoricalDtype.update_dtype` when ``dtype`` is a :class:`CategoricalDtype` with non ``None`` categories and ordered (:issue:`59647`)
595
+
- Performance improvement in :meth:`DataFrame.astype` when converting to extension floating dtypes, e.g. "Float64" (:issue:`60066`)
595
596
- Performance improvement in :meth:`to_hdf` avoid unnecessary reopenings of the HDF5 file to speedup data addition to files with a very large number of groups . (:issue:`58248`)
596
597
- Performance improvement in ``DataFrameGroupBy.__len__`` and ``SeriesGroupBy.__len__`` (:issue:`57595`)
597
598
- Performance improvement in indexing operations for string dtypes (:issue:`56997`)
0 commit comments