File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
modules/Subsetting_Data_in_R Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -663,7 +663,7 @@ B. `filter()` with `&`
663
663
- you can ` select() ` based on patterns in the column names
664
664
- you can also ` select() ` based on column class with the ` where() ` function
665
665
- 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!)
667
667
- ` filter() ` can be used to filter out rows based on logical conditions
668
668
- avoid using quotes when referring to column names with ` filter() `
669
669
You can’t perform that action at this time.
0 commit comments