Update influenza-like-illness-analysis.Rmd

parent 8b4c3eeb
......@@ -27,7 +27,6 @@ data_url = "http://www.sentiweb.fr/datasets/incidence-PAY-3.csv"
```
### Download
The first line of the CSV file is a comment, which we ignore with `skip=1`.
```{r}
data_file = "syndrome-grippal.csv"
if (!file.exists(data_file)) {
......@@ -52,6 +51,9 @@ This is the documentation of the data from [the download site](https://ns.sentiw
### Lecture
The first line of the CSV file is a comment, which we ignore with `skip=1`.
```{r}
data = read.csv(data_file, skip=1)
```
......
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