diff --git a/materials/sections/r-creating-functions.qmd b/materials/sections/r-creating-functions.qmd index 9de2ae07..34556e35 100644 --- a/materials/sections/r-creating-functions.qmd +++ b/materials/sections/r-creating-functions.qmd @@ -231,8 +231,6 @@ A common workflow in the `tidyverse` is to use the pipe operator `%>%` (or the n ```{r} #| label: func-dplyr-example -library(tidyverse) - f_temps_df %>% select(fahr, celsius) %>% mutate(rankine = fahr + 459.67)