Skip to content

Commit a1592cd

Browse files
committed
Restructuration into 10 modules
1 parent d26dd30 commit a1592cd

File tree

40 files changed

+306
-28
lines changed

40 files changed

+306
-28
lines changed

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
- All learnr exercices adapted and tested with svbox2022.
44

5+
- Reorganization of learnrs and additio, of new ones (course 8 modules -\> 10 modules).
6+
57
# BioDataScience2 2022.0.0
68

79
- New version for the academic year 2022-2023.

inst/tutorials/B01La_rappel/B01La_rappel.Rmd renamed to inst/tutorials/B00La_rappel/B00La_rappel.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: "Rappel de SDD I"
33
author: "Guyliann Engels & Philippe Grosjean"
4-
description: "**SDD II Module 1** Rappel du cours de sdd1."
4+
description: "**SDD II** Rappel de SDD I."
55
tutorial:
6-
id: "B01La_rappel"
6+
id: "B00La_rappel"
77
version: 2.2.0/22
88
output:
99
learnr::tutorial:
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

inst/tutorials/B01Lb_reglin1/B01Lb_reglin1.Rmd renamed to inst/tutorials/B01La_reg_lin/B01La_reg_lin.Rmd

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
22
title: "Régression linéaire simple"
33
author: "Guyliann Engels & Philippe Grosjean"
4-
description: "**SDD II Module1** Régression linéaire simple."
4+
description: "**SDD II Module 1** Régression linéaire simple."
55
tutorial:
6-
id: "B01Lb_reglin1"
7-
version: 2.1.2/10
6+
id: "B01La_reg_lin"
7+
version: 2.2.0/10
88
output:
99
learnr::tutorial:
1010
progressive: true
@@ -30,6 +30,7 @@ BioDataScience2::learnr_server(input, output, session)
3030
## Objectifs
3131

3232
- Revoir la corrélation et les indices de Pearson et Spearman
33+
3334
- Maîtriser la régression linéaire dans R, en particulier la fonction `lm()`.
3435

3536
## Corrélation
Binary file not shown.
Binary file not shown.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: "Analyse des résidus d'une régression"
3+
author: "Guyliann Engels & Philippe Grosjean"
4+
description: "**SDD II Module 1** Analyse des résidus d'une régression."
5+
tutorial:
6+
id: "B01Lb_residus"
7+
version: 2.0.0/0
8+
output:
9+
learnr::tutorial:
10+
progressive: true
11+
allow_skip: true
12+
runtime: shiny_prerendered
13+
---
14+
15+
```{r setup, include=FALSE}
16+
BioDataScience3::learnr_setup()
17+
SciViews::R()
18+
library(pastecs)
19+
20+
# ...
21+
```
22+
23+
```{r, echo=FALSE}
24+
BioDataScience3::learnr_banner()
25+
```
26+
27+
```{r, context="server"}
28+
BioDataScience3::learnr_server(input, output, session)
29+
```
30+
31+
------------------------------------------------------------------------
32+
33+
## Objectifs
34+
35+
- ...
36+
37+
## Analyse des résidus
38+
39+
TODO: ce tutoriel doit encore être écrit. Vous devez probablement penser à installer une version plus récente du package qui contient les exercices finalisés !
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: "Modèle linéaire généralisé"
3+
author: "Guyliann Engels & Philippe Grosjean"
4+
description: "**SDD II Module 4** Modèle linéaire généralisé."
5+
tutorial:
6+
id: "B04La_glm"
7+
version: 2.0.0/0
8+
output:
9+
learnr::tutorial:
10+
progressive: true
11+
allow_skip: true
12+
runtime: shiny_prerendered
13+
---
14+
15+
```{r setup, include=FALSE}
16+
BioDataScience3::learnr_setup()
17+
SciViews::R()
18+
library(mlearning)
19+
20+
# ...
21+
```
22+
23+
```{r, echo=FALSE}
24+
BioDataScience3::learnr_banner()
25+
```
26+
27+
```{r, context="server"}
28+
BioDataScience3::learnr_server(input, output, session)
29+
```
30+
31+
------------------------------------------------------------------------
32+
33+
## Objectifs
34+
35+
- ...
36+
37+
## Régression logistique
38+
39+
TODO: ce tutoriel doit encore être écrit. Vous devez probablement penser à installer une version plus récente du package qui contient les exercices finalisés !
Binary file not shown.
Binary file not shown.
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: "Test d'un modèle"
3+
author: "Guyliann Engels & Philippe Grosjean"
4+
description: "**SDD II Module 4** Test d'un modèle."
5+
tutorial:
6+
id: "B04Lb_mod_test"
7+
version: 2.0.0/0
8+
output:
9+
learnr::tutorial:
10+
progressive: true
11+
allow_skip: true
12+
runtime: shiny_prerendered
13+
---
14+
15+
```{r setup, include=FALSE}
16+
BioDataScience3::learnr_setup()
17+
SciViews::R()
18+
library(mlearning)
19+
20+
# ...
21+
```
22+
23+
```{r, echo=FALSE}
24+
BioDataScience3::learnr_banner()
25+
```
26+
27+
```{r, context="server"}
28+
BioDataScience3::learnr_server(input, output, session)
29+
```
30+
31+
------------------------------------------------------------------------
32+
33+
## Objectifs
34+
35+
- ...
36+
37+
## Set d'apprentissage et de test
38+
39+
TODO: ce tutoriel doit encore être écrit. Vous devez probablement penser à installer une version plus récente du package qui contient les exercices finalisés !

inst/tutorials/B04La_nls/B04La_nls.Rmd renamed to inst/tutorials/B05La_nls/B05La_nls.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: "Régression non linéaire"
33
author: "Guyliann Engels & Philippe Grosjean"
4-
description: "**SDD II Module 4** Régression non linéaire"
4+
description: "**SDD II Module 5** Régression non linéaire."
55
tutorial:
6-
id: "B04La_nls"
6+
id: "B05La_nls"
77
version: 2.0.0/5
88
output:
99
learnr::tutorial:
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: "Bases de données (partie 1)"
3+
author: "Guyliann Engels & Philippe Grosjean"
4+
description: "**SDD II Module 6** Bases de données (partie 1)"
5+
tutorial:
6+
id: "B06La_db1"
7+
version: 2.0.0/0
8+
output:
9+
learnr::tutorial:
10+
progressive: true
11+
allow_skip: true
12+
runtime: shiny_prerendered
13+
---
14+
15+
```{r setup, include=FALSE}
16+
BioDataScience3::learnr_setup()
17+
SciViews::R()
18+
library(mlearning)
19+
20+
# ...
21+
```
22+
23+
```{r, echo=FALSE}
24+
BioDataScience3::learnr_banner()
25+
```
26+
27+
```{r, context="server"}
28+
BioDataScience3::learnr_server(input, output, session)
29+
```
30+
31+
------------------------------------------------------------------------
32+
33+
## Objectifs
34+
35+
- ...
36+
37+
## Qu'est-ce qu'une base de données ?
38+
39+
TODO: ce tutoriel doit encore être écrit. Vous devez probablement penser à installer une version plus récente du package qui contient les exercices finalisés !

inst/tutorials/B07La_pca/B07La_pca.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
2-
title: "Analyse en composantes principales"
2+
title: "Analyse en composantes principales (ACP)"
33
author: "Guyliann Engels & Philippe Grosjean"
4-
description: "**SDD II Module 7** : Analyse en Composantes Principales (ACP)"
4+
description: "**SDD II Module 7** : Analyse en Composantes Principales (ACP)."
55
tutorial:
66
id: "B07La_pca"
77
version: 2.0.2/6

inst/tutorials/B07Lb_ca/B07Lb_ca.Rmd

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: "Analyse factorielle des correspondances (AFC)"
3+
author: "Guyliann Engels & Philippe Grosjean"
4+
description: "**SDD II Module 7** Analyse factorielle des correspondances (AFC)."
5+
tutorial:
6+
id: "B07Lb_ca"
7+
version: 2.0.0/0
8+
output:
9+
learnr::tutorial:
10+
progressive: true
11+
allow_skip: true
12+
runtime: shiny_prerendered
13+
---
14+
15+
```{r setup, include=FALSE}
16+
BioDataScience3::learnr_setup()
17+
SciViews::R()
18+
library(mlearning)
19+
20+
# ...
21+
```
22+
23+
```{r, echo=FALSE}
24+
BioDataScience3::learnr_banner()
25+
```
26+
27+
```{r, context="server"}
28+
BioDataScience3::learnr_server(input, output, session)
29+
```
30+
31+
------------------------------------------------------------------------
32+
33+
## Objectifs
34+
35+
- ...
36+
37+
## Types de jeux de données pour l'AFC
38+
39+
TODO: ce tutoriel doit encore être écrit. Vous devez probablement penser à installer une version plus récente du package qui contient les exercices finalisés !
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: "Bases de données (partie 2)"
3+
author: "Guyliann Engels & Philippe Grosjean"
4+
description: "**SDD II Module 8** Bases de données (partie 2)"
5+
tutorial:
6+
id: "B08La_db2"
7+
version: 2.0.0/0
8+
output:
9+
learnr::tutorial:
10+
progressive: true
11+
allow_skip: true
12+
runtime: shiny_prerendered
13+
---
14+
15+
```{r setup, include=FALSE}
16+
BioDataScience3::learnr_setup()
17+
SciViews::R()
18+
library(mlearning)
19+
20+
# ...
21+
```
22+
23+
```{r, echo=FALSE}
24+
BioDataScience3::learnr_banner()
25+
```
26+
27+
```{r, context="server"}
28+
BioDataScience3::learnr_server(input, output, session)
29+
```
30+
31+
------------------------------------------------------------------------
32+
33+
## Objectifs
34+
35+
- ...
36+
37+
## Initiation au langage SQL
38+
39+
TODO: ce tutoriel doit encore être écrit. Vous devez probablement penser à installer une version plus récente du package qui contient les exercices finalisés !

inst/tutorials/B08La_mfa/B08La_mfa.Rmd renamed to inst/tutorials/B08Lb_mfa/B08Lb_mfa.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: "Analyse factorielle multiple"
2+
title: "Analyse factorielle multiple (AFM)"
33
author: "Guyliann Engels & Philippe Grosjean"
4-
description: "**SDD II Module 8** : Analyse factorielle multiple (AFM)"
4+
description: "**SDD II Module 8** : Analyse factorielle multiple (AFM)."
55
tutorial:
6-
id: "B08La_mfa"
6+
id: "B08Lb_mfa"
77
version: 2.0.1/8
88
output:
99
learnr::tutorial:

inst/tutorials/B05La_cah/B05La_cah.Rmd renamed to inst/tutorials/B09La_ahc/B09La_ahc.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: "Classification hiérarchique"
2+
title: "Classification hiérarchique (CAH)"
33
author: "Guyliann Engels, Raphael Conotte & Philippe Grosjean"
4-
description: "**SDD II Module 5** Matrices de distances et CAH."
4+
description: "**SDD II Module 9** Classification hiérarchique (CAH)."
55
tutorial:
6-
id: "B05La_cah"
6+
id: "B09La_ahc"
77
version: 2.0.1/10
88
output:
99
learnr::tutorial:

inst/tutorials/B06La_kmeans/B06La_kmeans.Rmd renamed to inst/tutorials/B09Lb_kmeans/B09Lb_kmeans.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: "K-moyennes"
33
author: "Guyliann Engels, Raphael Conotte & Philippe Grosjean"
4-
description: "**SDD II Module 6** Regroupement par les K-moyennes"
4+
description: "**SDD II Module 9** Regroupement par les K-moyennes"
55
tutorial:
6-
id: "B06La_kmeans"
6+
id: "B09Lb_kmeans"
77
version: 2.1.0/4
88
output:
99
learnr::tutorial:

inst/tutorials/B06Lc_som/B06Lc_som.Rmd renamed to inst/tutorials/B10La_som/B10La_som.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: "Cartes auto-adaptatives"
2+
title: "Cartes auto-adaptatives (SOM)"
33
author: "Guyliann Engels & Philippe Grosjean"
4-
description: "**SDD II Module 6** Cartes auto-adaptatives (SOM)"
4+
description: "**SDD II Module 10** Cartes auto-adaptatives (SOM)"
55
tutorial:
6-
id: "B06Lc_som"
6+
id: "B10La_som"
77
version: 2.0.1/5
88
output:
99
learnr::tutorial:
Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
---
2+
title: "Indices de diversité"
3+
author: "Guyliann Engels & Philippe Grosjean"
4+
description: "**SDD II Module 10** Indices de diversité"
5+
tutorial:
6+
id: "B10Lb_div"
7+
version: 2.0.0/0
8+
output:
9+
learnr::tutorial:
10+
progressive: true
11+
allow_skip: true
12+
runtime: shiny_prerendered
13+
---
14+
15+
```{r setup, include=FALSE}
16+
BioDataScience3::learnr_setup()
17+
SciViews::R()
18+
library(mlearning)
19+
20+
# ...
21+
```
22+
23+
```{r, echo=FALSE}
24+
BioDataScience3::learnr_banner()
25+
```
26+
27+
```{r, context="server"}
28+
BioDataScience3::learnr_server(input, output, session)
29+
```
30+
31+
------------------------------------------------------------------------
32+
33+
## Objectifs
34+
35+
- ...
36+
37+
## Quantifier la (bio)diversité
38+
39+
TODO: ce tutoriel doit encore être écrit. Vous devez probablement penser à installer une version plus récente du package qui contient les exercices finalisés !

0 commit comments

Comments
 (0)