Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mooc-rr
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
b0405a09a27327d6e3545e5f2dda1080
mooc-rr
Commits
22014d31
Commit
22014d31
authored
Apr 06, 2022
by
Melanie Debelgarric
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modification url
parent
95c50f74
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src_R_challenger.Rmd
module4/src_R_challenger.Rmd
+4
-1
No files found.
module4/src_R_challenger.Rmd
View file @
22014d31
...
...
@@ -21,6 +21,7 @@ sessionInfo()
Here are the available libraries
```{r}
library(devtools)
devtools::session_info()
```
...
...
@@ -28,9 +29,11 @@ devtools::session_info()
# Loading and inspecting data
Let's start by reading data:
```{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
```
*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.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment