Skip to content

Commit 4355511

Browse files
authored
Update OpenAlex.qmd
1 parent 4af2a7e commit 4355511

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

OpenAlex.qmd

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,16 @@ OpenAlex offers a lot more information than what we are exploring in this notebo
8585

8686
## Loading packages
8787

88-
We will load the *openalexR* package [@openalexR] that allows us to query the OpenAlex API from within our notebook and the *tidyverse* package [@tidyverse] that provides a lot of additional functionalities for data wrangling and visualization.
88+
We will load the *openalexR* package [@openalexR] that allows us to query the OpenAlex API from within our notebook. We will also load the packages *dplyr*, *tidyr* and *ggplot2* that provide a lot of additional functionalities for data wrangling and visualization and are part of the *tidyverse* package [@tidyverse].
8989

9090

9191
```{r}
9292
# Installation of packages if not already installed with
9393
# install.packages(c("openalexR","tidyverse"))
9494
library(openalexR)
95-
library(tidyverse)
95+
library(dplyr)
96+
library(tidyr)
97+
library(ggplot2)
9698
```
9799

98100
## Loading data

0 commit comments

Comments
 (0)