Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
moocrr-reproducibility-study
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
1
Merge Requests
1
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
moocrr-session3
moocrr-reproducibility-study
Commits
86538750
Commit
86538750
authored
Jan 19, 2021
by
PedroMota
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update influenza-like-illness-analysis_en.Rmd
parent
838fb602
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
0 deletions
+24
-0
influenza-like-illness-analysis_en.Rmd
Module 3/exo1/influenza-like-illness-analysis_en.Rmd
+24
-0
No files found.
Module 3/exo1/influenza-like-illness-analysis_en.Rmd
View file @
86538750
title: "Analysis of influenza-like illness with a local copy of the data"
author: "PedroMota"
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
# Download data from *Réseau Sentinelles* and read data stored as `csv` from local files. Best choice to assure permanent access to dataset.
```{r}
setwd("~/ResearchReproductible") # Change working directory name
data_file <- read.csv2("incidence-PAY-3.csv", skip = 1)
```
If the code above has not worked, you can download it from the website ** Réseau Sentinelles**. Although the link below may no longer be available and data may have been modified.
```{r}
data_url = "http://www.sentiweb.fr/datasets/incidence-PAY-3.csv"
data <- read.csv(data_url, skip=1)
```
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