Skip to content

Commit 50350a9

Browse files
tidyverse typeset consistency
1 parent 63c76f3 commit 50350a9

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

intro.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
\mainmatter
22

3-
# R and the tidyverse {#intro}
3+
# R and the Tidyverse {#intro}
44

55
```{r intro-setup, include=FALSE}
66
library(magick)

reading.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1220,9 +1220,9 @@ please follow the instructions for computer setup needed to run the worksheets
12201220
found in Chapter \@ref(move-to-your-own-machine).
12211221
12221222
## Additional resources
1223-
- The [`readr` page on the tidyverse website](https://readr.tidyverse.org/) is where you should look if you want to learn more about the functions in this chapter, the full set of arguments you can use, and other related functions. The site also provides a very nice cheat sheet that summarizes many of the data wrangling functions from this chapter.
1223+
- The [`readr` page on the Tidyverse website](https://readr.tidyverse.org/) is where you should look if you want to learn more about the functions in this chapter, the full set of arguments you can use, and other related functions. The site also provides a very nice cheat sheet that summarizes many of the data wrangling functions from this chapter.
12241224
- Sometimes you might run into data in such poor shape that none of the reading functions we cover in this chapter works. In that case, you can consult the [data import chapter](https://r4ds.had.co.nz/data-import.html) from [R for Data Science](https://r4ds.had.co.nz/), which goes into a lot more detail about how R parses text from files into data frames.
1225-
- The documentation for many of the reading functions we cover in this chapter can be found [on the tidyverse website](https://readr.tidyverse.org/reference/read_delim.html). This site shows you the full set of arguments available for each function.
1225+
- The documentation for many of the reading functions we cover in this chapter can be found [on the Tidyverse website](https://readr.tidyverse.org/reference/read_delim.html). This site shows you the full set of arguments available for each function.
12261226
- The [`here` package](https://cran.r-project.org/web/packages/here/index.html) provides a way for you to construct or find your files' paths.
12271227
- The [`readxl` documentation](https://readxl.tidyverse.org/) provides more details on reading data from Excel, such as reading in data with multiple sheets, or specifying the cells to read in.
12281228
- The [`rio` package](https://github.com/leeper/rio) provides an alternative set of tools for reading and writing data in R. It aims to be a "Swiss army knife" for data reading/writing/converting, and supports a wide variety of data types (including data formats generated by other statistical software like SPSS and SAS).

viz.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1512,7 +1512,7 @@ please follow the instructions for computer setup needed to run the worksheets
15121512
found in Chapter \@ref(move-to-your-own-machine).
15131513

15141514
## Additional resources
1515-
- The [`ggplot2` page on the tidyverse website](https://ggplot2.tidyverse.org) is where you should look if you want to learn more about the functions in this chapter, the full set of arguments you can use, and other related functions. The site also provides a very nice cheat sheet that summarizes many of the data wrangling functions from this chapter.
1515+
- The [`ggplot2` page on the Tidyverse website](https://ggplot2.tidyverse.org) is where you should look if you want to learn more about the functions in this chapter, the full set of arguments you can use, and other related functions. The site also provides a very nice cheat sheet that summarizes many of the data wrangling functions from this chapter.
15161516
- The [Fundamentals of Data Visualization](https://serialmentor.com/dataviz/) has a wealth of information on designing effective visualizations. It is not specific to any particular programming language or library. If you want to improve your visualization skills, this is the next place to look.
15171517
- [*R for Data Science*](https://r4ds.had.co.nz/) has a chapter on [creating visualizations using `ggplot2`](https://r4ds.had.co.nz/data-visualisation.html). This reference is specific to R and `ggplot2`, but provides a much more detailed introduction to the full set of tools that `ggplot2` provides. This chapter is where you should look if you want to learn how to make more intricate visualizations in `ggplot2` than what is included in this chapter.
15181518
- The [`theme` function documentation](https://ggplot2.tidyverse.org/reference/theme.html)

wrangling.Rmd

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1635,13 +1635,12 @@ found in Chapter \@ref(move-to-your-own-machine).
16351635
functions, we recommend you check out [this
16361636
chapter](http://stat545.com/block010_dplyr-end-single-table.html#where-were-we)
16371637
of the data wrangling, exploration, and analysis with R book.
1638-
- The [`dplyr` page on the tidyverse website](https://dplyr.tidyverse.org/) is
1638+
- The [`dplyr` page on the Tidyverse website](https://dplyr.tidyverse.org/) is
16391639
another resource to learn more about the functions in this
16401640
chapter, the full set of arguments you can use, and other related functions.
16411641
The site also provides a very nice cheat sheet that summarizes many of the
16421642
data wrangling functions from this chapter.
1643-
- Check out the [tidyselect
1644-
page](https://tidyselect.r-lib.org/reference/select_helpers.html) for a
1643+
- Check out the [`tidyselect` page](https://tidyselect.r-lib.org/reference/select_helpers.html) for a
16451644
comprehensive list of `select` helpers.
16461645
- [*R for Data Science*](https://r4ds.had.co.nz/) has a few chapters related to
16471646
data wrangling that go into more depth than this book. For example, the
@@ -1658,7 +1657,7 @@ found in Chapter \@ref(move-to-your-own-machine).
16581657
loop](https://r4ds.had.co.nz/iteration.html#iteration).
16591658
- There are many `select` helpers that can be used to efficiently subset
16601659
columns in a data frame when paired with the `select` function,
1661-
or other functions that also use the tidy select syntax for column selection
1660+
or other functions that also use the `tidyselect` syntax for column selection
16621661
(e.g., `pivot-longer`).
16631662
The [documentation for `select` helpers](https://tidyselect.r-lib.org/reference/select_helpers.html)
16641663
is a useful reference to find the helper you need for your particular problem.

0 commit comments

Comments
 (0)