pandas.api.typing.Rolling.median — pandas 3.0.0rc0+33.g1fd184de2a documentation (original) (raw)

Rolling.median(numeric_only=False, engine=None, engine_kwargs=None)[source]#

Calculate the rolling median.

Parameters:

numeric_onlybool, default False

Include only float, int, boolean columns.

enginestr, default None

engine_kwargsdict, default None

The default engine_kwargs for the 'numba' engine is{'nopython': True, 'nogil': False, 'parallel': False}.

Returns:

Series or DataFrame

Return type is the same as the original object with np.float64 dtype.

See also

Series.rolling

Calling rolling with Series data.

DataFrame.rolling

Calling rolling with DataFrames.

Series.median

Aggregating median for Series.

DataFrame.median

Aggregating median for DataFrame.

Notes

See Numba engine and Numba (JIT compilation)for extended documentation and performance considerations for the Numba engine.

Examples

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