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
As discussed in #10266Series.asof is effectively equivalent to s.dropna().reindex(where, method='ffill'). The implementation of Series.asof uses Index.asof_locs, which is used no where else in the code, and is untested. So deprecating Series.asof might make sense.
Let's add the impls discussed (IOW, implement .asof in terms of reindexing internally). Further let's add tests for .asof_locs (though this maybe abel to tbe removed)
The text was updated successfully, but these errors were encountered:
As discussed in #10266
Series.asof
is effectively equivalent tos.dropna().reindex(where, method='ffill')
. The implementation ofSeries.asof
usesIndex.asof_locs
, which is used no where else in the code, and is untested. So deprecatingSeries.asof
might make sense.Let's add the impls discussed (IOW, implement
.asof
in terms of reindexing internally). Further let's add tests for.asof_locs
(though this maybe abel to tbe removed)The text was updated successfully, but these errors were encountered: