From fe2336fcdcbee3648f0b318bd872439687efb8cd Mon Sep 17 00:00:00 2001 From: Jeet Parekh Date: Thu, 11 Feb 2021 12:49:44 +0530 Subject: [PATCH] remove mention of MultiIndex from rolling docs --- pandas/core/window/rolling.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandas/core/window/rolling.py b/pandas/core/window/rolling.py index bec6cfb375716..b5714dbcd9e91 100644 --- a/pandas/core/window/rolling.py +++ b/pandas/core/window/rolling.py @@ -732,7 +732,7 @@ class Window(BaseWindow): Provide a window type. If ``None``, all points are evenly weighted. See the notes below for further information. on : str, optional - For a DataFrame, a datetime-like column or MultiIndex level on which + For a DataFrame, a datetime-like column or Index level on which to calculate the rolling window, rather than the DataFrame's index. Provided integer column is ignored and excluded from result since an integer index is not used to calculate the rolling window.