Skip to content

Commit 10a38d7

Browse files
chore: Fix join doc example (#2102)
1 parent 801be1b commit 10a38d7

File tree

1 file changed

+3
-3
lines changed
  • third_party/bigframes_vendored/pandas/core

1 file changed

+3
-3
lines changed

third_party/bigframes_vendored/pandas/core/frame.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4672,10 +4672,10 @@ def join(
46724672
46734673
Another option to join using the key columns is to use the on parameter:
46744674
4675-
>>> df1.join(df2, on="col1", how="right")
4675+
>>> df1.join(df2, on="col2", how="right")
46764676
col1 col2 col3 col4
4677-
<NA> 11 <NA> foo 3
4678-
<NA> 22 <NA> baz 4
4677+
<NA> <NA> 11 foo 3
4678+
<NA> <NA> 22 baz 4
46794679
<BLANKLINE>
46804680
[2 rows x 4 columns]
46814681

0 commit comments

Comments
 (0)