Commit 22014d31 authored by Melanie Debelgarric's avatar Melanie Debelgarric

modification url

parent 95c50f74
...@@ -21,6 +21,7 @@ sessionInfo() ...@@ -21,6 +21,7 @@ sessionInfo()
Here are the available libraries Here are the available libraries
```{r} ```{r}
library(devtools)
devtools::session_info() devtools::session_info()
``` ```
...@@ -28,9 +29,11 @@ devtools::session_info() ...@@ -28,9 +29,11 @@ devtools::session_info()
# Loading and inspecting data # Loading and inspecting data
Let's start by reading data: Let's start by reading data:
```{r} ```{r}
data = read.csv("https://app-learninglab.inria.fr/moocrr/gitlab/moocrr-session3/moocrr-reproducibility-study/tree/master/data/shuttle.csv",header=T) url_data <- "https://app-learninglab.inria.fr/moocrr/gitlab/moocrr-session3/moocrr-reproducibility-study/raw/master/data/shuttle.csv"
data = read.csv(url_data, header=T)
data data
``` ```
*J'ai modifié l'url car celui d'origine n'étais plus le bon. J'ai trouvé ce nouvel url grâce au forum du cours.*
We know from our previous experience on this data set that filtering data is a really bad idea. We will therefore process it as such. We know from our previous experience on this data set that filtering data is a really bad idea. We will therefore process it as such.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment