Skip to content

Commit 41f8c94

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

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
@@ -600,7 +600,7 @@ x[i, on = .(x_int >= i_int), .(i_int = i.i_int, x_int = x.x_int, lower, UPPER)]
600600

601601
Using prefixes (`x.` and `i.`) is not strictly necessary in this case since the names are unambiguous, but using them ensures the output clearly distinguishes `i_int` (from `i`) and `x_int` (from `x`).
602602

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

605605
```{r}
606606
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)