-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_packages.qmd
More file actions
24 lines (20 loc) · 1012 Bytes
/
_packages.qmd
File metadata and controls
24 lines (20 loc) · 1012 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!--
load all the packages used in the case study analysis in the code chunk below
(try to use tidyverse over base R).
Fill out the table and add rows as necessary providing a link to the source and briefly explaining its use for each package
-->
We will begin by loading the packages that we will need:
```{r}
library(here)
library(readxl)
library(dplyr)
library(ggplot2)
library(stringr)
```
Package | Use
---------- |-------------
[readxl](https://readxl.tidyverse.org){target="_blank"} | To read excel files into R
[dplyr](https://dplyr.tidyverse.org){target="_blank"} | To combine and manipulate data tables
[ggplot2](https://ggplot2.tidyverse.org) | To visualize data
[stringr](https://stringr.tidyverse.org) | To manipulate strings
The first time we use a function, we will use the `::` to indicate which package we are using. Unless we have overlapping function names, this is not necessary, but we will include it here to be informative about where the functions we will use come from.