You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vignettes/datatable-joins.Rmd
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -320,7 +320,7 @@ Products[!ProductReceived,
320
320
on = c("id" = "product_id")]
321
321
```
322
322
323
-
As you can see, the result only has 'banana', as it was the only product that is not present in the `ProductReceived` table.
323
+
As you can see, the result only has 'soda', as it was the only product that is not present in the `ProductReceived` table.
324
324
325
325
```{r}
326
326
ProductReceived[!Products,
@@ -390,7 +390,7 @@ Here some important considerations:
390
390
- It didn't add the prefix `i.` to any column.
391
391
392
392
-**Row level**
393
-
- All rows from in the `i` table were kept as we never received any banana but row is still part of the results.
393
+
- All rows from the `i` table were kept: the soda entry from `Products` that was not matched by any row in `ProductReceived` is still part of the results.
394
394
- The row related to `product_id = 6` is not part of the results any more as it is not present in the `Products` table.
0 commit comments