-
Notifications
You must be signed in to change notification settings - Fork 654
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
FEAT-#6153: Add API layer implementations for some stat methods. #6156
FEAT-#6153: Add API layer implementations for some stat methods. #6156
Conversation
…methods. Signed-off-by: mvashishtha <mahesh@ponder.io>
Signed-off-by: mvashishtha <mahesh@ponder.io>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Left a couple of quick questions - CI failure seems unrelated to the code (conda install fail). Will hold off on rerunning until comments are addressed, in case additional pushes are required.
Signed-off-by: mvashishtha <mahesh@ponder.io>
@@ -377,17 +389,66 @@ | |||
) | |||
) | |||
|
|||
def sem(self, *args, **kwargs): | |||
def cov(self, other=None, pairwise=None, ddof=1, numeric_only=False, **kwargs): | |||
from .dataframe import DataFrame |
Check notice
Code scanning / CodeQL
Cyclic import
def sem(self, *args, **kwargs): | ||
def cov(self, other=None, pairwise=None, ddof=1, numeric_only=False, **kwargs): | ||
from .dataframe import DataFrame | ||
from .series import Series |
Check notice
Code scanning / CodeQL
Cyclic import
) | ||
|
||
def corr(self, other=None, pairwise=None, ddof=1, numeric_only=False, **kwargs): | ||
from .dataframe import DataFrame |
Check notice
Code scanning / CodeQL
Cyclic import
|
||
def corr(self, other=None, pairwise=None, ddof=1, numeric_only=False, **kwargs): | ||
from .dataframe import DataFrame | ||
from .series import Series |
Check notice
Code scanning / CodeQL
Cyclic import
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
What do these changes do?
FEAT-#6153: Add API layer implementations for some stat methods.
Also fix some other expanding methods that were not tested and/or were broken. test_expanding wasn't running in CI until this commit, so we missed some errors.
flake8 modin/ asv_bench/benchmarks scripts/doc_checker.py
black --check modin/ asv_bench/benchmarks scripts/doc_checker.py
git commit -s
docs/development/architecture.rst
is up-to-date