Skip to content

Commit b4df504

Browse files
minor fix
1 parent ef466c0 commit b4df504

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/reading.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ Below you will see that after running `collect`, R knows that the retrieved
647647
data has 67 rows, and there is no database listed any more.
648648

649649
```{r}
650-
aboriginal_lang_data <- collect(aboriginal_lang_db)
650+
aboriginal_lang_data <- collect(aboriginal_lang_selected_db)
651651
aboriginal_lang_data
652652
```
653653

@@ -661,14 +661,14 @@ For example, look what happens when we try to use `nrow` to count rows
661661
in a data frame: \index{nrow}
662662

663663
```{r}
664-
nrow(aboriginal_lang_db)
664+
nrow(aboriginal_lang_selected_db)
665665
```
666666

667667
or `tail` to preview the last six rows of a data frame:
668668
\index{tail}
669669

670670
```{r, eval = FALSE}
671-
tail(aboriginal_lang_db)
671+
tail(aboriginal_lang_selected_db)
672672
```
673673

674674
```

0 commit comments

Comments
 (0)