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/user_guide/basics.rst
-28
Original file line number
Diff line number
Diff line change
@@ -1039,34 +1039,6 @@ not noted for a particular column will be ``NaN``:
1039
1039
1040
1040
tsdf.agg({"A": ["mean", "min"], "B": "sum"})
1041
1041
1042
-
.. _basics.aggregation.mixed_string:
1043
-
1044
-
Mixed dtypes
1045
-
++++++++++++
1046
-
1047
-
.. deprecated:: 1.4.0
1048
-
Attempting to determine which columns cannot be aggregated and silently dropping them from the results is deprecated and will be removed in a future version. If any porition of the columns or operations provided fail, the call to ``.agg`` will raise.
1049
-
1050
-
When presented with mixed dtypes that cannot aggregate, ``.agg`` will only take the valid
1051
-
aggregations. This is similar to how ``.groupby.agg`` works.
Copy file name to clipboardExpand all lines: doc/source/whatsnew/v2.0.0.rst
+1-1
Original file line number
Diff line number
Diff line change
@@ -302,7 +302,7 @@ Removal of prior version deprecations/changes
302
302
- Changed behavior of :meth:`DataFrame.any` and :meth:`DataFrame.all` with ``bool_only=True``; object-dtype columns with all-bool values will no longer be included, manually cast to ``bool`` dtype first (:issue:`46188`)
303
303
- Changed behavior of comparison of a :class:`Timestamp` with a ``datetime.date`` object; these now compare as un-equal and raise on inequality comparisons, matching the ``datetime.datetime`` behavior (:issue:`36131`)
304
304
- Enforced deprecation of silently dropping columns that raised a ``TypeError`` in :class:`Series.transform` and :class:`DataFrame.transform` when used with a list or dictionary (:issue:`43740`)
305
-
-
305
+
- Change behavior of :meth:`DataFrame.apply` with list-like so that any partial failure will raise an error (:issue:`43740`)
0 commit comments