Skip to content

Commit

Permalink
Fixing chunk labels
Browse files Browse the repository at this point in the history
  • Loading branch information
sstevens2 authored Dec 4, 2023
1 parent 83727de commit 76a7b8b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions episodes/06-data-visualization.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -58,19 +58,19 @@ The idea of **mapping** is crucial in **ggplot**. One familiar example is to *ma

First, we need to install the `ggplot2` package.

```{r install-tidyverse, echo=TRUE, eval=FALSE}
```{r install-ggplot2, echo=TRUE, eval=FALSE}
install.packages("ggplot2")
```

Now, let's load the `ggplot2` package:

```{r load-tidyverse}
```{r load-ggplot2}
library(ggplot2)
```

We will also use some of the other tidyverse packages we used in the last episode, so we need to load them as well.

```{r load-tidyverse}
```{r load-other-pkgs}
library(readr)
library(dplyr)
```
Expand Down

0 comments on commit 76a7b8b

Please sign in to comment.