Skip to content

Commit 77ee89e

Browse files
committed
Correction A10Lb_kruskal
1 parent da12f4d commit 77ee89e

File tree

4 files changed

+13
-9
lines changed

4 files changed

+13
-9
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: BioDataScience1
2-
Version: 2022.7.0
2+
Version: 2022.7.1
33
Title: A Series of Learnr Documents for Biological Data Science 1
44
Description: Interactive documents using learnr and shiny applications for studying biological data science.
55
Authors@R: c(

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# BioDataScience 2022.7.1
2+
3+
- Correction in **A10Lb_kruskal** (dependencies to BioDataScience2\|3 should not be there).
4+
15
# BioDataScience 2022.7.0
26

37
- Revision of tutorial **A10La_anova**.

inst/tutorials/A10Lb_kruskal/A10Lb_kruskal.Rmd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ author: "Guyliann Engels & Philippe Grosjean"
44
description: "**SDD I Module 10** Test de Kruskal-Wallis."
55
tutorial:
66
id: "A10Lb_kruskal"
7-
version: 2.0.0/6
7+
version: 2.0.1/6
88
output:
99
learnr::tutorial:
1010
progressive: true
@@ -13,7 +13,7 @@ runtime: shiny_prerendered
1313
---
1414

1515
```{r setup, include=FALSE}
16-
BioDataScience2::learnr_setup()
16+
BioDataScience1::learnr_setup()
1717
SciViews::R("infer", lang = "fr")
1818
1919
# dataframe
@@ -28,18 +28,18 @@ plant <- dtx(
2828
```
2929

3030
```{r, echo=FALSE}
31-
BioDataScience3::learnr_banner()
31+
BioDataScience1::learnr_banner()
3232
```
3333

3434
```{r, context="server"}
35-
BioDataScience3::learnr_server(input, output, session)
35+
BioDataScience1::learnr_server(input, output, session)
3636
```
3737

3838
------------------------------------------------------------------------
3939

4040
## Objectifs
4141

42-
Tout comme le test de Wilcoxon est l'a version'équivalent non paramétrique du test *t* de Student, le test de Kruskal-Wallis est l'équivalent non paramétrique de l'analyse de variance à un facteur.
42+
Tout comme le test de Wilcoxon est l'équivalent non paramétrique du test *t* de Student, le test de Kruskal-Wallis est l'équivalent non paramétrique de l'analyse de variance à un facteur.
4343

4444
Dans ce tutoriel, vous allez pouvoir auto-évaluer votre capacité à :
4545

inst/tutorials/A11Lb_anova2mixte/A11Lb_anova2mixte.Rmd

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,19 +13,19 @@ runtime: shiny_prerendered
1313
---
1414

1515
```{r setup, include=FALSE}
16-
BioDataScience3::learnr_setup()
16+
BioDataScience1::learnr_setup()
1717
SciViews::R()
1818
library(mlearning)
1919
2020
# ...
2121
```
2222

2323
```{r, echo=FALSE}
24-
BioDataScience3::learnr_banner()
24+
BioDataScience1::learnr_banner()
2525
```
2626

2727
```{r, context="server"}
28-
BioDataScience3::learnr_server(input, output, session)
28+
BioDataScience1::learnr_server(input, output, session)
2929
```
3030

3131
------------------------------------------------------------------------

0 commit comments

Comments
 (0)