Skip to content

Commit c8bbb58

Browse files
change quote to Note in vignettes datatable-joins.Rmd (#7179)
* Update datatable-joins.Rmd #7177 lines 120 442 substitue '>' by 'Note:' * Update datatable-joins.Rmd #7177 lines 120 442 substitue > by Notes: * Update datatable-benchmarking.Rmd #7177 line 112 substitue > by Note: * Update datatable-faq.Rmd #7177 lines 112 118 324 466 substitue > by Note: * Update datatable-programming.Rmd #7177 line 102 substitue > by Note: * Update datatable-benchmarking.Rmd #7177 line 102 substitue > by Note : * Update datatable-faq.Rmd #7177 lines 103 109 318 461 substitue > by Note : * Update datatable-programming.Rmd #7177 line 102 subshitue > by Note : * Update datatable-benchmarking.Rmd redtored line 102 * Update datatable-benchmarking.Rmd restore line 102 * Update datatable-programming.Rmd restore line 102 * Update datatable-programming.Rmd restore line 102 * Update datatable-faq.Rmd restore lines 112 118 324 466 * Update datatable-faq.Rmd restore lineS 103 109 318 461 * Update datatable-joins.Rmd #7179 highlight Note on lines 120 442 * Update datatable-joins.Rmd #7179 higlight Note line 120 442 * line endings --------- Co-authored-by: Michael Chirico <[email protected]>
1 parent 52f0df3 commit c8bbb58

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

vignettes/datatable-joins.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ x[i, on, nomatch]
117117
\____ secondary data.table
118118
```
119119

120-
Note: Please keep in mind that the standard argument order in `data.table` is `dt[i, j, by]`. For join operations, it is recommended to pass the `on` and `nomatch` arguments by name to avoid using `j` and `by` when they are not needed.
120+
**Note**: Please keep in mind that the standard argument order in `data.table` is `dt[i, j, by]`. For join operations, it is recommended to pass the `on` and `nomatch` arguments by name to avoid using `j` and `by` when they are not needed.
121121

122122
## 3. Equi joins
123123

@@ -439,7 +439,7 @@ ProductReceived[ProductSales,
439439
allow.cartesian = TRUE]
440440
```
441441

442-
Note: `allow.cartesian` is defaulted to FALSE as this is seldom what the user wants, and such a cross join can lead to a very large number of rows in the result. For example, if Table A has 100 rows and Table B has 50 rows, their Cartesian product would result in 5000 rows (100 * 50). This can quickly become memory-intensive for large datasets.
442+
**Note**: `allow.cartesian` is defaulted to FALSE as this is seldom what the user wants, and such a cross join can lead to a very large number of rows in the result. For example, if Table A has 100 rows and Table B has 50 rows, their Cartesian product would result in 5000 rows (100 * 50). This can quickly become memory-intensive for large datasets.
443443

444444

445445
#### 3.6.1. Selecting one match

vignettes/fr/datatable-joins.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ x[i, on, nomatch]
117117
\____ data.table secondaire
118118
```
119119

120-
Note : n'oubliez pas que l'ordre standard des arguments dans data.table est `dt[i, j, by]`. Pour les opérations de jointure, il est recommandé de passer les arguments `on` et `nomatch` par nom pour éviter d'utiliser `j` et `by` quand ce n'est pas nécessaire.
120+
**Note** : n'oubliez pas que l'ordre standard des arguments dans data.table est `dt[i, j, by]`. Pour les opérations de jointure, il est recommandé de passer les arguments `on` et `nomatch` par nom pour éviter d'utiliser `j` et `by` quand ce n'est pas nécessaire.
121121

122122
## 3. Jointures équilibrées
123123

@@ -439,7 +439,7 @@ ProductReceived[ProductSales,
439439
allow.cartesian = TRUE]
440440
```
441441

442-
Note : `allow.cartesian` vaut par défaut FALSE car c'est ce que l'utilisateur a souhaité, et une telle jointure croisée peut conduire à un très grand nombre de lignes dans le résultat. Par exemple, si Table A possède 100 lignes et Table
442+
**Note** : `allow.cartesian` vaut par défaut FALSE car c'est ce que l'utilisateur a souhaité, et une telle jointure croisée peut conduire à un très grand nombre de lignes dans le résultat. Par exemple, si Table A possède 100 lignes et Table
443443
B en a 50, leur produit cartésien sera de 5000 lignes (100 * 50). Ce qui peut rapidement accroître la mémoire occupée pour de grands ensembles de données.
444444

445445
#### 3.6.1. Selection d'une seule correspondance

0 commit comments

Comments
 (0)