Commit 90f76944 authored by Arnaud Legrand's avatar Arnaud Legrand

Read data from the git

parent 5d43b5ac
...@@ -441,7 +441,7 @@ ...@@ -441,7 +441,7 @@
} }
], ],
"source": [ "source": [
"data = pd.read_csv(\"../../data/shuttle.csv\")\n", "data = pd.read_csv(\"https://app-learninglab.inria.fr/gitlab/moocrr-session1/moocrr-reproducibility-study/raw/master/data/shuttle.csv\")\n",
"data" "data"
] ]
}, },
......
...@@ -26,7 +26,7 @@ devtools::session_info() ...@@ -26,7 +26,7 @@ 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("../../data/shuttle.csv",header=T) data = read.csv("https://app-learninglab.inria.fr/gitlab/moocrr-session1/moocrr-reproducibility-study/raw/master/data/shuttle.csv",header=T)
data data
``` ```
......
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