Skip to content

Commit c25dbc1

Browse files
committed
plz let this fix the environment issues for class 6
1 parent 83b0f5a commit c25dbc1

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

class5.qmd

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ format:
1515

1616
## Objectives of Data Wrangling: Class 1
1717

18-
- Be comfortable subsetting vectors and dataframes using both base R and tidyverse functions
18+
- Be comfortable subsetting vectors and dataframes using both base R and tidyverse functions
1919

20-
- Understand what tidy data is and what it looks like
20+
- Understand what tidy data is and what it looks like
2121

22-
- Understand piping basics
22+
- Understand piping basics
2323

2424
::: {.callout-note title="Measure twice, cut once"}
2525
Before you begin wrangling data, you should be able to:
@@ -132,9 +132,10 @@ The bundle of tidy-associated packages is called the `tidyverse`, and it's a
132132
One of the most popular `tidyverse` packages, `dplyr`, offers a suite of helpful and readable functions for data manipulation. Let's get started with how it can help you see your data:
133133

134134
```{r}
135-
renv::restore()
136135
#| echo: false
137136
#| warning: false
137+
138+
renv::restore()
138139
library(dplyr)
139140
library(tidyr)
140141
```

class6.qmd

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ execute:
1212
```{r, echo=FALSE}
1313
options(digits = 3)
1414
renv::restore()
15+
library(tidyverse)
1516
library(ggplot2)
1617
```
1718

0 commit comments

Comments
 (0)