Skip to content

Commit 2474961

Browse files
fixed mlee comments on PR
1 parent f4a6b67 commit 2474961

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

intro.Rmd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -337,8 +337,7 @@ the words in a name. R is case sensitive, which means that `Letter` and
337337
objects meaningful names. For instance, you *can* name a data frame `x`.
338338
However, using more meaningful terms, such as `language_data`, will help you
339339
remember what each name in your code represents. We recommend following the
340-
Tidyverse naming conventions outlined in
341-
the *Tidyverse Style Guide* [@tidyversestyleguide]. Let's
340+
Tidyverse naming conventions outlined in the *Tidyverse Style Guide* [@tidyversestyleguide]. Let's
342341
now use the assignment symbol to give the name
343342
`can_lang` to the 2016 Canadian census language data frame that we get from
344343
`read_csv`.

reading.Rmd

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1098,9 +1098,8 @@ of accessing data through an API in this book, with the hope that it gives you e
10981098
idea that you can learn how to use another API if needed.
10991099
11001100
In particular, in this book we will show you the basics of how to use
1101-
the `rtweet` package in R
1102-
\index{API!rtweet}\index{rtweet}\index{Twitter}
1103-
to access data from the Twitter API. One nice feature of this particular
1101+
the `rtweet` package in R\index{API!rtweet}\index{rtweet}\index{Twitter} to access
1102+
data from the Twitter API. One nice feature of this particular
11041103
API is that you don't need a special *token* \index{API!token} to access it; you simply need to
11051104
make an account with them. Your access to the data will then be authenticated and controlled through
11061105
your account username and password. If you have a Twitter

wrangling.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1639,7 +1639,7 @@ found in Chapter \@ref(move-to-your-own-machine).
16391639
chapter, the full set of arguments you can use, and other related functions.
16401640
The site also provides a very nice cheat sheet that summarizes many of the
16411641
data wrangling functions from this chapter.
1642-
- Check out the [`tidyselect` R package page](https://tidyselect.r-lib.org/reference/select_helpers.html)
1642+
- Check out the [`tidyselect` R package page](https://tidyselect.r-lib.org/index.html)
16431643
[@tidyselect] for a comprehensive list of `select` helpers.
16441644
These helpers can be used to choose columns in a data frame when paired with the `select` function
16451645
(and other functions that use the `tidyselect` syntax, such as `pivot_longer`).

0 commit comments

Comments
 (0)