Skip to content

Commit ef105e7

Browse files
committed
DOC: default of left_index/right_index is False close #1758
1 parent 69d1f75 commit ef105e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pandas/core/frame.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,11 +127,11 @@
127127
right_on : label or list, or array-like
128128
Field names to join on in right DataFrame or vector/list of vectors per
129129
left_on docs
130-
left_index : boolean, default True
130+
left_index : boolean, default False
131131
Use the index from the left DataFrame as the join key(s). If it is a
132132
MultiIndex, the number of keys in the other DataFrame (either the index
133133
or a number of columns) must match the number of levels
134-
right_index : boolean, default True
134+
right_index : boolean, default False
135135
Use the index from the right DataFrame as the join key. Same caveats as
136136
left_index
137137
sort : boolean, default True

0 commit comments

Comments
 (0)