Skip to content

DOC: Fix window pairwise function other not taking ndarray #40410

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 13, 2021
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