Skip to content

Commit 891bfc2

Browse files
adding info about extra slides
1 parent 76edd8d commit 891bfc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/Subsetting_Data_in_R/Subsetting_Data_in_R.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ B. `filter()` with `&`
663663
- you can `select()` based on patterns in the column names
664664
- you can also `select()` based on column class with the `where()` function
665665
- you can combine multiple tidyselect functions together like `select(starts_with("C"), ends_with("state"))`
666-
- you can combine multiple patterns with the `c()` function like `select(starts_with(c("A", "C")))`
666+
- you can combine multiple patterns with the `c()` function like `select(starts_with(c("A", "C")))` (see extra slides at the end for more info!)
667667
- `filter()` can be used to filter out rows based on logical conditions
668668
- avoid using quotes when referring to column names with `filter()`
669669

0 commit comments

Comments
 (0)