Skip to content

Commit c6a13dd

Browse files
wrangling lobjs
1 parent 964dd83 commit c6a13dd

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

source/wrangling.Rmd

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -26,28 +26,23 @@ By the end of the chapter, readers will be able to do the following:
2626
- Define what vectors, lists, and data frames are in R, and describe how they relate to
2727
each other.
2828
- Describe the common types of data in R and their uses.
29-
- Recall and use the following functions for their
30-
intended data wrangling tasks:
31-
- `across`
29+
- Use the following functions for their intended data wrangling tasks:
3230
- `c`
33-
- `filter`
34-
- `group_by`
35-
- `select`
36-
- `map`
37-
- `mutate`
38-
- `pull`
3931
- `pivot_longer`
4032
- `pivot_wider`
41-
- `rowwise`
4233
- `separate`
34+
- `select`
35+
- `filter`
36+
- `mutate`
4337
- `summarize`
44-
- Recall and use the following operators for their
45-
intended data wrangling tasks:
46-
- `==`
38+
- `map`
39+
- `group_by`
40+
- `across`
41+
- `rowwise`
42+
- Use the following operators for their intended data wrangling tasks:
43+
- `==`, `!=`, `<`, `<=`, `>`, and `>=`
4744
- `%in%`
48-
- `!`
49-
- `&`
50-
- `|`
45+
- `!`, `&`, and `|`
5146
- `|>` and `%>%`
5247

5348
## Data frames, vectors, and lists

0 commit comments

Comments
 (0)