pandas.core.window.Rolling.median — pandas 0.24.0rc1 documentation (original) (raw)
Calculate the rolling median.
Compute the rolling median of a series with a window size of 3.
s = pd.Series([0, 1, 2, 3, 4]) s.rolling(3).median() 0 NaN 1 NaN 2 1.0 3 2.0 4 3.0 dtype: float64