We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7705974 commit d6d37abCopy full SHA for d6d37ab
src/join/inplace.jl
@@ -6,9 +6,10 @@
6
Perform a left join of two data frame objects by updating the `df1` with the
7
joined columns from `df2`.
8
9
-A left join includes all rows from `df1`.
10
-Rows and columns from `df1` are left untouched.
11
-Each row in `df1` must have at most one match in `df2` based on `on` columns.
+A left join includes all rows from `df1` and leaves all rows and columns from `df1`
+untouched. Note that each row in `df1` must have at most one match in `df2`. Otherwise,
+this function would not be able to execute the join in-place since new rows would need to be
12
+added to `df1`.
13
14
# Arguments
15
- `df1`, `df2`: the `AbstractDataFrames` to be joined
0 commit comments