tidyr is now on CRAN 🎉 (#1247)

This commit is contained in:
Hadley Wickham 2023-01-26 09:41:40 -06:00 committed by GitHub
parent b1f2086623
commit d9afa135fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 2 additions and 14 deletions

View File

@ -30,7 +30,6 @@ Imports:
slider,
tidymodels,
tidyverse,
tidyr,
writexl
Suggests:
downlit,
@ -39,7 +38,6 @@ Suggests:
sessioninfo
Remotes:
tidyverse/dplyr,
tidyverse/tidyr,
tidyverse/tidyverse
Encoding: UTF-8
License: CC NC ND 3.0

View File

@ -26,8 +26,8 @@ Learning functional programming can easily veer into the abstract, but in this c
### Prerequisites
::: callout-important
This chapter relies on features only found in purrr 1.0.0 and dplyr 1.1.0, which are still in development.
If you want to live life on the edge you can get the dev version with `devtools::install_github(c("tidyverse/purrr", "tidyverse/dplyr"))`.
This chapter relies on features only found in dplyr 1.1.0, which is still in development.
If you want to live life on the edge you can get the dev version with `devtools::install_github(c( "tidyverse/dplyr"))`.
:::
In this chapter, we'll focus on tools provided by dplyr and purrr, both core members of the tidyverse.

View File

@ -22,11 +22,6 @@ We'll finish with a survey of other places in the tidyverse and base R where you
### Prerequisites
::: callout-important
This chapter relies on features only found in tidyr 1.3.0, which is still in development.
If you want to live on the edge, you can get the dev version with `devtools::install_github("tidyverse/tidyr")`.
:::
In this chapter, we'll use regular expression functions from stringr and tidyr, both core members of the tidyverse, as well as data from the babynames package.
```{r}

View File

@ -21,11 +21,6 @@ We'll keep working with strings in the next chapter, where you'll learn more abo
### Prerequisites
::: callout-important
This chapter relies on features only found in tidyr 1.3.0, which is still in development.
If you want to live on the edge, you can get the dev versions with `devtools::install_github("tidyverse/tidyr")`.
:::
In this chapter, we'll use functions from the stringr package, which is part of the core tidyverse.
We'll also use the babynames data since it provides some fun strings to manipulate.