Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pandas/core/window/ewm.py
Original file line number Diff line number Diff line change
Expand Up @@ -447,7 +447,7 @@ def var_func(values, begin, end, min_periods):
create_section_header("Parameters"),
dedent(
"""
other : Series, DataFrame, or ndarray, optional
other : Series or DataFrame , optional
If not supplied then will default to self and produce pairwise
output.
pairwise : bool, default None
Expand Down Expand Up @@ -514,7 +514,7 @@ def cov_func(x, y):
create_section_header("Parameters"),
dedent(
"""
other : Series, DataFrame, or ndarray, optional
other : Series or DataFrame, optional
If not supplied then will default to self and produce pairwise
output.
pairwise : bool, default None
Expand Down
4 changes: 2 additions & 2 deletions pandas/core/window/expanding.py
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ def quantile(
create_section_header("Parameters"),
dedent(
"""
other : Series, DataFrame, or ndarray, optional
other : Series or DataFrame, optional
If not supplied then will default to self and produce pairwise
output.
pairwise : bool, default None
Expand Down Expand Up @@ -598,7 +598,7 @@ def cov(
create_section_header("Parameters"),
dedent(
"""
other : Series, DataFrame, or ndarray, optional
other : Series or DataFrame, optional
If not supplied then will default to self and produce pairwise
output.
pairwise : bool, default None
Expand Down
4 changes: 2 additions & 2 deletions pandas/core/window/rolling.py
Original file line number Diff line number Diff line change
Expand Up @@ -2111,7 +2111,7 @@ def quantile(self, quantile: float, interpolation: str = "linear", **kwargs):
create_section_header("Parameters"),
dedent(
"""
other : Series, DataFrame, or ndarray, optional
other : Series or DataFrame, optional
If not supplied then will default to self and produce pairwise
output.
pairwise : bool, default None
Expand Down Expand Up @@ -2149,7 +2149,7 @@ def cov(
create_section_header("Parameters"),
dedent(
"""
other : Series, DataFrame, or ndarray, optional
other : Series or DataFrame, optional
If not supplied then will default to self and produce pairwise
output.
pairwise : bool, default None
Expand Down