Skip to content

Commit 17bdb4e

Browse files
authored
add french version of datatable-joins.Rmd (#7151)
1 parent 48ece3b commit 17bdb4e

File tree

2 files changed

+743
-2
lines changed

2 files changed

+743
-2
lines changed

vignettes/datatable-joins.Rmd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ ProductSales = data.table(
9999
count = sample(c(50L, 100L, 150L), size = 10L, replace = TRUE)
100100
)
101101
102-
103102
ProductSales
104103
```
105104

@@ -574,6 +573,7 @@ x[i, on = .(x_int >= i_int)]
574573
```
575574

576575
Key Takeaways:
576+
577577
- The name of the output column (`x_int`) comes from `x`, but the values come from `i_int` in `i`.
578578
- The last row contains `NA` because no rows in `x` match the last row in `i` (`UPPER == "C"`).
579579
- Multiple rows in `x` are returned to match the first row in `i` with `UPPER == "A"`.
@@ -740,4 +740,3 @@ ProductPriceHistory
740740
- *How does one do a full join using data.table?*: https://stackoverflow.com/questions/15170741/how-does-one-do-a-full-join-using-data-table
741741

742742
- *Enhanced data.frame*: https://rdatatable.gitlab.io/data.table/reference/data.table.html
743-

0 commit comments

Comments
 (0)