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
ea4f5ba1b97cd5a14653d4641234245a
mooc-rr
Commits
4380af2f
Commit
4380af2f
authored
May 24, 2021
by
Paul
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Solution exercice proposée par Paul Faye
parent
18c96f2b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
1 deletion
+19
-1
MOOC-RR.Rproj
MOOC-RR.Rproj
+13
-0
analyse-syndrome-grippal.Rmd
module3/exo1/analyse-syndrome-grippal.Rmd
+6
-1
No files found.
MOOC-RR.Rproj
0 → 100644
View file @
4380af2f
Version: 1.0
RestoreWorkspace: Default
SaveWorkspace: Default
AlwaysSaveHistory: Default
EnableCodeIndexing: Yes
UseSpacesForTab: Yes
NumSpacesForTab: 2
Encoding: UTF-8
RnwWeave: Sweave
LaTeX: pdfLaTeX
module3/exo1/analyse-syndrome-grippal.Rmd
View file @
4380af2f
...
@@ -46,7 +46,12 @@ La première ligne du fichier CSV est un commentaire, que nous ignorons en préc
...
@@ -46,7 +46,12 @@ La première ligne du fichier CSV est un commentaire, que nous ignorons en préc
```{r}
```{r}
library(readr)
library(readr)
setwd("C:/Users/Paul Faye/Desktop/MOOC-RR/module3/exo1/")
setwd("C:/Users/Paul Faye/Desktop/MOOC-RR/module3/exo1/")
data = read_csv("incidence_PAY_3.csv", skip = 1)
donnees = "incidence_PAY_3.csv"
if (!file.exists(donnees)) {
download.file(data_url, donnees, method="auto")
}
data = read_csv(donnees, skip = 1)
```
```
Regardons ce que nous avons obtenu:
Regardons ce que nous avons obtenu:
...
...
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