Skip to content

Commit da0931d

Browse files
Update vignettes/datatable-joins.Rmd
Co-authored-by: Michael Chirico <[email protected]>
1 parent a98f799 commit da0931d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

vignettes/datatable-joins.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@ x[i, on = .(x_int >= i_int), .(i_int = i.i_int, x_int = x.x_int, lower, UPPER)]
599599
```
600600
This ensures the output clearly distinguishes i_int (from i) and x_int (from x).
601601

602-
If you want to exclude unmatched rows, you should use nomatch = NULL:
602+
If you want to exclude unmatched rows (an _inner join_), you should use nomatch = NULL:
603603

604604
```{r}
605605
x[i, on = .(x_int >= i_int), .(i_int = i.i_int, x_int = x.x_int, lower, UPPER), nomatch = NULL]

0 commit comments

Comments
 (0)