Skip to content

Commit

Permalink
Update episodes/clean-data.Rmd
Browse files Browse the repository at this point in the history
Co-authored-by: Andree Valle Campos <[email protected]>
  • Loading branch information
Degoot-AM and avallecam authored Apr 24, 2024
1 parent 62b7b45 commit aa86824
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions episodes/clean-data.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,16 @@ In the process of analyzing outbreak data, it's essential to ensure that the dat
The first step is to import the dataset following the guidelines outlined in the [Read case data](../episodes/read-cases.Rmd) episode. This involves loading the dataset into our environment and view its structure and content.

```{r, message=FALSE}
# Load packages
library("rio")
library("here")
# Read data
raw_ebola_data <- rio::import(
here::here("built", "data", "simulated_ebola_2.csv")
)
# Return first five rows
utils::head(raw_ebola_data, 5)
```

Expand Down

0 comments on commit aa86824

Please sign in to comment.