diff --git a/DESCRIPTION b/DESCRIPTION index cdb6521..ee2c821 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -37,7 +37,6 @@ Suggests: knitr, sessioninfo Remotes: - tidyverse/dplyr, tidyverse/tidyverse Encoding: UTF-8 License: CC NC ND 3.0 diff --git a/iteration.qmd b/iteration.qmd index 540aed4..8bf303f 100644 --- a/iteration.qmd +++ b/iteration.qmd @@ -25,11 +25,6 @@ Learning functional programming can easily veer into the abstract, but in this c ### Prerequisites -::: callout-important -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. You've seen dplyr before, but [purrr](http://purrr.tidyverse.org/) is new. We're just going to use a couple of purrr functions in this chapter, but it's a great package to explore as you improve your programming skills. diff --git a/numbers.qmd b/numbers.qmd index 212ed36..9a732ec 100644 --- a/numbers.qmd +++ b/numbers.qmd @@ -18,11 +18,6 @@ We'll finish off by covering the summary functions that pair well with `summariz ### Prerequisites -::: callout-important -This chapter relies on features only found in dplyr 1.1.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/dplyr")`. -::: - This chapter mostly uses functions from base R, which are available without loading any packages. But we still need the tidyverse because we'll use these base R functions inside of tidyverse functions like `mutate()` and `filter()`. Like in the last chapter, we'll use real examples from nycflights13, as well as toy examples made with `c()` and `tribble()`.