From e9149ec84190379b5e16e1faf41b67f5e254ccd9 Mon Sep 17 00:00:00 2001 From: Michael Chirico Date: Sun, 22 Dec 2024 22:49:16 -0800 Subject: [PATCH] minor refinements --- vignettes/datatable-joins.Rmd | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/vignettes/datatable-joins.Rmd b/vignettes/datatable-joins.Rmd index 0772d8c5f..cb880deaf 100644 --- a/vignettes/datatable-joins.Rmd +++ b/vignettes/datatable-joins.Rmd @@ -249,7 +249,7 @@ Products[ ``` -##### Summarizing with on in `data.table` +##### Summarizing with `on` in `data.table` We can also use this alternative to return aggregated results based columns present in the `x` table. @@ -302,12 +302,12 @@ ProductReceived[Products, nomatch = NULL] ``` -Despite both tables having the same information, they present some relevant differences: +Despite both tables having the same information, there are some relevant differences: - They present different column ordering. - They have column name differences: - - The `id` column on the first table has the same information as the `product_id` in the second table. - - The `i.id` column on the first table has the same information as the `id` in the second table. + - The `id` column in the first table has the same information as the `product_id` in the second table. + - The `i.id` column in the first table has the same information as the `id` in the second table. ### 3.3. Not join