Skip to content

Commit 14362d9

Browse files
authored
Update datatable-joins.Rmd #7151 lines 419 353 101
1 parent ff90ec7 commit 14362d9

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

vignettes/fr/datatable-joins.Rmd

Lines changed: 2 additions & 3 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

@@ -350,7 +349,7 @@ SubSetRowsSorted
350349
```
351350

352351

353-
3. Sélectionner les rangées `x` à garder.
352+
3. Sélectionner les lignes `x` à garder.
354353

355354
```{r}
356355
Products[SubSetRowsSorted]
@@ -416,7 +415,7 @@ Pour illustrer cette situation, prenons par exemple le `product_id == 1L`, qui a
416415
ProductReceived[product_id == 1L]
417416
```
418417

419-
Et quatre rangées dans notre table `ProductSales`.
418+
Et quatre lignes dans notre table `ProductSales`.
420419

421420
```{r}
422421
ProductSales[product_id == 1L]

0 commit comments

Comments
 (0)