Skip to content

Commit dea1e5d

Browse files
AngelFelizRrikivillalbatdhock
authored
Join vignette (#6478)
Co-authored-by: rikivillalba <[email protected]> Co-authored-by: Toby Dylan Hocking <[email protected]>
1 parent 036fb48 commit dea1e5d

File tree

7 files changed

+721
-23
lines changed

7 files changed

+721
-23
lines changed

DESCRIPTION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ Authors@R: c(
9090
person("Anirban", "Chetia", role="ctb"),
9191
person("Doris", "Amoakohene", role="ctb"),
9292
person("Ivan", "Krylov", role="ctb"),
93+
person("Angel", "Feliz", role="ctb"),
9394
person("Michael","Young", role="ctb"),
9495
person("Mark", "Seeto", role="ctb")
9596
)

vignettes/datatable-intro.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ ans
475475

476476
**Keys:** Actually `keyby` does a little more than *just ordering*. It also *sets a key* after ordering by setting an `attribute` called `sorted`.
477477

478-
We'll learn more about `keys` in the *Keys and fast binary search based subset* vignette; for now, all you have to know is that you can use `keyby` to automatically order the result by the columns specified in `by`.
478+
We'll learn more about `keys` in the `vignette("datatable-keys-fast-subset", package="data.table")`; for now, all you have to know is that you can use `keyby` to automatically order the result by the columns specified in `by`.
479479

480480
### c) Chaining
481481

@@ -655,7 +655,7 @@ We have seen so far that,
655655

656656
* We can also sort a `data.table` using `order()`, which internally uses data.table's fast order for better performance.
657657

658-
We can do much more in `i` by keying a `data.table`, which allows for blazing fast subsets and joins. We will see this in the *"Keys and fast binary search based subsets"* and *"Joins and rolling joins"* vignette.
658+
We can do much more in `i` by keying a `data.table`, which allows for blazing fast subsets and joins. We will see this in the `vignette("datatable-keys-fast-subset", package="data.table")` and the `vignette("datatable-joins", package="data.table")`.
659659

660660
#### Using `j`:
661661

@@ -689,7 +689,7 @@ We can do much more in `i` by keying a `data.table`, which allows for blazing fa
689689

690690
As long as `j` returns a `list`, each element of the list will become a column in the resulting `data.table`.
691691

692-
We will see how to *add/update/delete* columns *by reference* and how to combine them with `i` and `by` in the next vignette.
692+
We will see how to *add/update/delete* columns *by reference* and how to combine them with `i` and `by` in the next vignette (`vignette("datatable-reference-semantics", package="data.table")`).
693693

694694
***
695695

0 commit comments

Comments
 (0)