diff --git a/modules/Subsetting_Data_in_R/Subsetting_Data_in_R.Rmd b/modules/Subsetting_Data_in_R/Subsetting_Data_in_R.Rmd index 0e21cdde..48388a98 100644 --- a/modules/Subsetting_Data_in_R/Subsetting_Data_in_R.Rmd +++ b/modules/Subsetting_Data_in_R/Subsetting_Data_in_R.Rmd @@ -735,6 +735,13 @@ The pipe `%>%` makes this much more readable. It reads left side "pipes" into r er_30 %>% filter(year > 2000 & county == "Denver") %>% select(year, rate) ``` +## Alternative Pipes + +There are multiple ways to write a pipe and you might see these (they work the same!): + + |> + + %>% # Adding/Removing Columns