pandas 0.7.2 documentation

pandas.Series.reindex_like

Series.reindex_like(other, method=None)

Reindex Series to match index of another Series, optionally with filling logic

Parameters :

other : Series

method : string or None

See Series.reindex docstring

Returns :

reindexed : Series

Notes

Like calling s.reindex(other.index, method=...)