Update influenza-like-illness-analysis.Rmd

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