Skip to content

Commit

Permalink
fix local issues
Browse files Browse the repository at this point in the history
  • Loading branch information
avallecam committed Oct 1, 2024
1 parent 309ac6a commit 17fa469
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions episodes/read-cases.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,9 @@ ebola_confirmed <- rio::import(
file.path("data", "ebola_cases.csv")
) %>%
dplyr::as_tibble() # for a simple data frame output
# preview data
ebola_confirmed
```

Similarly, you can import files of other formats such as `tsv`, `xlsx`, ... etc.
Expand Down Expand Up @@ -148,7 +151,7 @@ rio::import(here::here("data", "Marburg.zip"))
The [DBI](https://dbi.r-dbi.org/) package serves as a versatile interface for interacting with database management
systems (DBMS) across different back-ends or servers. It offers a uniform method for accessing and retrieving data from various database systems.

::::::::::::: discuss
::::::::::::: discussion

### When to read directly from a database?

Expand Down Expand Up @@ -250,8 +253,7 @@ The `extracted_data` object represents the extracted, ideally after specifying q

```{r,warning=FALSE,message=FALSE}
# View the extracted_data
extracted_data %>%
dplyr::as_tibble() # for a simple data frame output
extracted_data
```

:::::::::::::::::::::: callout
Expand Down

0 comments on commit 17fa469

Please sign in to comment.