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

fix file path

parent b360ae3d
No related branches found
No related tags found
1 merge request!6Switch to main as default branch
......@@ -503,10 +503,12 @@ First, we will use the gene count table of these samples, formatted for use in g
Open the csv file using the `read_csv2()` function. The file is located at "https://can.gitbiopages.ens-lyon.fr/R_basis/session_4/Expression_matrice_pivot_longer_DEGs_GSE86356.csv".
<details><summary>Solution</summary>
<p>
<p>
Download the Expression_matrice_pivot_longer_DEGs_GSE86356.csv file and save it in your working directory.
```{r read_csv1}
expr_DM1 <- read_csv2("https://can.gitbiopages.ens-lyon.fr/R_basis/Expression_matrice_pivot_longer_DEGs_GSE86356.csv")
expr_DM1 <- read_csv2("Expression_matrice_pivot_longer_DEGs_GSE86356.csv")
expr_DM1
```
......
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