Skip to content
Snippets Groups Projects
Commit 5c805d7d authored by Carine Rey's avatar Carine Rey
Browse files

fix error as the csv file is not yet online (session3)

parent 98f642e9
No related branches found
No related tags found
1 merge request!6Switch to main as default branch
......@@ -370,9 +370,18 @@ Use the `openxlsx` package to save the [https://can.gitbiopages.ens-lyon.fr/R_ba
<details><summary>Solution</summary>
<p>
```{r load_xlsx}
2 solutions :
Use directly the url
```{r load_xlsx_url, eval = F}
gapminder <- read.xlsx("https://can.gitbiopages.ens-lyon.fr/R_basis/session_3/gapminder.xlsx")
```
Dowload the file, save it in the same directory as your script then use the local path
```{r load_xlsx}
gapminder <- read.xlsx("gapminder.xlsx")
```
</p>
</details>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment