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/v1.4.3.rst
+2-1
Original file line number
Diff line number
Diff line change
@@ -16,7 +16,8 @@ Fixed regressions
16
16
~~~~~~~~~~~~~~~~~
17
17
- Fixed regression in :meth:`DataFrame.nsmallest` led to wrong results when ``np.nan`` in the sorting column (:issue:`46589`)
18
18
- Fixed regression in :func:`read_fwf` raising ``ValueError`` when ``widths`` was specified with ``usecols`` (:issue:`46580`)
19
-
-
19
+
- Fixed regression in :meth:`.Groupby.transform` and :meth:`.Groupby.agg` failing with ``engine="numba"`` when the index was a :class:`MultiIndex` (:issue:`46867`)
20
+
- Fixed regression is :meth:`.Styler.to_latex` and :meth:`.Styler.to_html` where ``buf`` failed in combination with ``encoding`` (:issue:`47053`)
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v1.5.0.rst
+53-2
Original file line number
Diff line number
Diff line change
@@ -150,6 +150,7 @@ Other enhancements
150
150
- Added ``validate`` argument to :meth:`DataFrame.join` (:issue:`46622`)
151
151
- A :class:`errors.PerformanceWarning` is now thrown when using ``string[pyarrow]`` dtype with methods that don't dispatch to ``pyarrow.compute`` methods (:issue:`42613`)
152
152
- Added ``numeric_only`` argument to :meth:`Resampler.sum`, :meth:`Resampler.prod`, :meth:`Resampler.min`, :meth:`Resampler.max`, :meth:`Resampler.first`, and :meth:`Resampler.last` (:issue:`46442`)
153
+
- ``times`` argument in :class:`.ExponentialMovingWindow` now accepts ``np.timedelta64`` (:issue:`47003`)
For `optional libraries <https://pandas.pydata.org/docs/getting_started/install.html>`_ the general recommendation is to use the latest version.
368
412
The following table lists the lowest version per library that is currently being tested throughout the development of pandas.
@@ -493,7 +537,8 @@ retained by specifying ``group_keys=False``.
493
537
``numeric_only`` default value
494
538
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
495
539
496
-
Across the DataFrame operations such as ``min``, ``sum``, and ``idxmax``, the default
540
+
Across the DataFrame and DataFrameGroupBy operations such as
541
+
``min``, ``sum``, and ``idxmax``, the default
497
542
value of the ``numeric_only`` argument, if it exists at all, was inconsistent.
498
543
Furthermore, operations with the default value ``None`` can lead to surprising
499
544
results. (:issue:`46560`)
@@ -523,6 +568,8 @@ gained the ``numeric_only`` argument.
523
568
- :meth:`DataFrame.cov`
524
569
- :meth:`DataFrame.idxmin`
525
570
- :meth:`DataFrame.idxmax`
571
+
- :meth:`.DataFrameGroupBy.cummin`
572
+
- :meth:`.DataFrameGroupBy.cummax`
526
573
- :meth:`.DataFrameGroupBy.idxmin`
527
574
- :meth:`.DataFrameGroupBy.idxmax`
528
575
- :meth:`.GroupBy.var`
@@ -553,6 +600,8 @@ Other Deprecations
553
600
- Deprecated the ``closed`` argument in :meth:`interval_range` in favor of ``inclusive`` argument; In a future version passing ``closed`` will raise (:issue:`40245`)
554
601
- Deprecated the methods :meth:`DataFrame.mad`, :meth:`Series.mad`, and the corresponding groupby methods (:issue:`11787`)
555
602
- Deprecated positional arguments to :meth:`Index.join` except for ``other``, use keyword-only arguments instead of positional arguments (:issue:`46518`)
603
+
- Deprecated indexing on a timezone-naive :class:`DatetimeIndex` using a string representing a timezone-aware datetime (:issue:`46903`, :issue:`36148`)
- Bug in :meth:`Index.astype` when casting from object dtype to ``timedelta64[ns]`` dtype incorrectly casting ``np.datetime64("NaT")`` values to ``np.timedelta64("NaT")`` instead of raising (:issue:`45722`)
595
644
- Bug in :meth:`SeriesGroupBy.value_counts` index when passing categorical column (:issue:`44324`)
596
645
- Bug in :meth:`DatetimeIndex.tz_localize` localizing to UTC failing to make a copy of the underlying data (:issue:`46460`)
646
+
- Bug in :meth:`DatetimeIndex.resolution` incorrectly returning "day" instead of "nanosecond" for nanosecond-resolution indexes (:issue:`46903`)
597
647
-
598
648
599
649
Timedelta
@@ -745,6 +795,7 @@ Reshaping
745
795
- Bug in concanenation with ``IntegerDtype``, or ``FloatingDtype`` arrays where the resulting dtype did not mirror the behavior of the non-nullable dtypes (:issue:`46379`)
746
796
- Bug in :func:`concat` with identical key leads to error when indexing :class:`MultiIndex` (:issue:`46519`)
747
797
- Bug in :meth:`DataFrame.join` with a list when using suffixes to join DataFrames with duplicate column names (:issue:`46396`)
798
+
- Bug in :meth:`DataFrame.pivot_table` with ``sort=False`` results in sorted index (:issue:`17041`)
0 commit comments