We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
df.squeeze
It is possible that when axis=1 in squeeze we still check len(self.index), which is never necessary when axis=1. Link to code here:
axis=1
len(self.index)
modin/modin/pandas/dataframe.py
Lines 2074 to 2084 in eac3c77
This is an easy fix, also see snowflakedb/snowpark-python#1767
The text was updated successfully, but these errors were encountered:
REFACTOR-modin-project#7315: Refactor axis checks in squeeze
d6ac8ff
Signed-off-by: Jonathan Shi <[email protected]>
REFACTOR-#7315: Refactor axis checks in squeeze (#7400)
8b8806e
Successfully merging a pull request may close this issue.
It is possible that when
axis=1
in squeeze we still checklen(self.index)
, which is never necessary whenaxis=1
. Link to code here:modin/modin/pandas/dataframe.py
Lines 2074 to 2084 in eac3c77
This is an easy fix, also see snowflakedb/snowpark-python#1767
The text was updated successfully, but these errors were encountered: