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.17.0.txt
+5
Original file line number
Diff line number
Diff line change
@@ -521,6 +521,11 @@ Deprecations
521
521
522
522
- ``Categorical.name`` was deprecated to make ``Categorical`` more ``numpy.ndarray`` like. Use ``Series(cat, name="whatever")`` instead (:issue:`10482`).
523
523
524
+
- :meth:`Series.asof` is deprecated. Please use :meth:`Series.reindex(where, method='ffill')`
525
+
instead. This method does not drop missing values in the original series.
526
+
527
+
So `Series.asof(where)` is equivalent to `Series.dropna().reindex(where, method='ffill')`.
0 commit comments