Skip to content
Merged
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
6 changes: 3 additions & 3 deletions third_party/bigframes_vendored/pandas/core/frame.py
Original file line number Diff line number Diff line change
Expand Up @@ -4672,10 +4672,10 @@ def join(

Another option to join using the key columns is to use the on parameter:

>>> df1.join(df2, on="col1", how="right")
>>> df1.join(df2, on="col2", how="right")
col1 col2 col3 col4
<NA> 11 <NA> foo 3
<NA> 22 <NA> baz 4
<NA> <NA> 11 foo 3
<NA> <NA> 22 baz 4
<BLANKLINE>
[2 rows x 4 columns]

Expand Down