-
Notifications
You must be signed in to change notification settings - Fork 653
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
FIX-#6786: properly d2p for cross DataFrame.join
#6787
Conversation
Signed-off-by: Anatoly Myachev <[email protected]>
@@ -1163,7 +1163,7 @@ def join( | |||
if other.name is None: | |||
raise ValueError("Other Series must have a name") | |||
other = self.__constructor__(other) | |||
if on is not None: | |||
if on is not None or how == "cross": |
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.
After this branch there is an implementation using concat
, but parameter how=='concat'
is not exist for it (only for join
and merge
).
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.
ok
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.
OK
@@ -1163,7 +1163,7 @@ def join( | |||
if other.name is None: | |||
raise ValueError("Other Series must have a name") | |||
other = self.__constructor__(other) | |||
if on is not None: | |||
if on is not None or how == "cross": |
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.
ok
What do these changes do?
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