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
c64cd7e42bfed49881e7537baa9bddf7
mooc-rr
Commits
c08c5469
Commit
c08c5469
authored
Jul 03, 2025
by
Noémie Kuenzi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding hands-on and creating syndrome-grippal.csv
parent
54222e57
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
308 additions
and
0 deletions
+308
-0
syndrome-grippal.csv
module3/exo1/syndrome-grippal.csv
+274
-0
hands-on.Rmd
module3/hands-on.Rmd
+34
-0
No files found.
module3/exo1/syndrome-grippal.csv
0 → 100644
View file @
c08c5469
This diff is collapsed.
Click to expand it.
module3/hands-on.Rmd
0 → 100644
View file @
c08c5469
---
title: "Analyse de l'incidence du syndrôme grippal"
author: "NK"
date: "2025-07-03"
output: html_document
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r}
library(parsedate)
```
```{r}
data_url = "https://www.sentiweb.fr/datasets/all/inc-25-PAY-ds2.csv"
```
```{r}
data = read.csv(data_url, skip = 1)
head(data)
```
```{r}
rows_na = apply(data, 1, function(x) any(is.na(x)))
data[rows_na,]
```
```{r}
class(data$week)
class(data$inc)
```
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