We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 801be1b commit 0a9e925Copy full SHA for 0a9e925
third_party/bigframes_vendored/pandas/core/frame.py
@@ -4672,10 +4672,10 @@ def join(
4672
4673
Another option to join using the key columns is to use the on parameter:
4674
4675
- >>> df1.join(df2, on="col1", how="right")
+ >>> df1.join(df2, on="col2", how="right")
4676
col1 col2 col3 col4
4677
- <NA> 11 <NA> foo 3
4678
- <NA> 22 <NA> baz 4
+ <NA> <NA> 11 foo 3
+ <NA> <NA> 22 baz 4
4679
<BLANKLINE>
4680
[2 rows x 4 columns]
4681
0 commit comments