Skip to content

Commit 5dac465

Browse files
committed
Learnrs module 8 ready for 2025-2026
1 parent 7f1f6ce commit 5dac465

File tree

4 files changed

+67
-3
lines changed

4 files changed

+67
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: BioDataScience2
2-
Version: 2025.7.0
2+
Version: 2025.8.0
33
Title: A Series of Learnr Documents for Biological Data Science 2
44
Description: Interactive documents using learnr for studying biological data science (second course).
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+
# BioDataScience2 2025.8.0
2+
3+
- Learnrs **B08La_mfa** and **B08Lb_bigd** revised for 2025-2026.
4+
15
# BioDataScience2 2025.7.0
26

37
- Learnrs **B07La_pca** and **B07Lb_ca** revised for 2025-2026.

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

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,36 @@ runtime: shiny_prerendered
1414
```{r setup, include=FALSE}
1515
BioDataScience2::learnr_setup()
1616
SciViews::R("explore", lang = "fr")
17+
# Required for RSConnect
18+
# SciViews::R
19+
library(rlang)
20+
library(data.table)
21+
library(ggplot2)
22+
library(tibble)
23+
library(tidyr)
24+
library(dplyr)
25+
library(dtplyr)
26+
library(broom)
27+
library(forcats)
28+
library(collapse)
29+
library(fs)
30+
library(data.trame)
31+
library(svFast)
32+
library(svTidy)
33+
library(svMisc)
34+
library(svBase)
35+
library(svFlow)
36+
library(data.io)
37+
library(chart)
38+
library(tabularise)
39+
library(SciViews)
40+
# ... more
41+
library(readxl)
42+
library(testthat)
43+
library(equatags)
44+
# 'explore' packages
45+
library(exploreit)
46+
library(vegan)
1747
```
1848

1949
```{r, echo=FALSE}
@@ -44,7 +74,7 @@ Il est donc utile de comprendre la logique et l'usage de cette analyse. Ce tutor
4474

4575
- Vous préparer à interpréter par vous-même les résultats de vos AFM
4676

47-
Avant toute chose, assurez vous d'avoir bien compris le contenu de la [section 8.1](https://wp.sciviews.org/sdd-umons2/?iframe=wp.sciviews.org/sdd-umons2-2024/analyse-factorielle-multiple-afm.html) du cours de SDD II.
77+
Avant toute chose, assurez vous d'avoir bien compris le contenu de la [section 8.1](https://wp.sciviews.org/sdd-umons2/?iframe=wp.sciviews.org/sdd-umons2-2025/analyse-factorielle-multiple-afm.html) du cours de SDD II.
4878

4979
## Étude de composition floristique
5080

@@ -93,7 +123,7 @@ Les données mises à disposition proviennent de l'étude suivante [Väre, H., O
93123

94124
## Préparation du tableau de données
95125

96-
La première étape consiste dans la réalisation d'un tableau de données unique. Vous allez donc combiner le tableau `envir` avec le tableau `spec` en un seul objet nommé `vare` en spécifiant la colonne similaire entre ces deux tableaux qui est la variable `station` et qui servira de point de référence à la fusion. Affichez ensuite les premières lignes du tableau `vare` avec la fonction `head()`.
126+
La première étape consiste en la réalisation d'un tableau de données unique. Vous allez donc combiner le tableau `envir` avec le tableau `spec` en un seul objet nommé `vare` en spécifiant la colonne similaire entre ces deux tableaux qui est la variable `station` et qui servira de point de référence à la fusion. Affichez ensuite les premières lignes du tableau `vare` avec la fonction `head()`.
97127

98128
```{r join}
99129
read("varechem", package = "vegan") %>.%

inst/tutorials/B08Lb_bigd/B08Lb_bigd.Rmd.inactivated renamed to inst/tutorials/B08Lb_bigd/B08Lb_bigd.Rmd

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,38 @@ runtime: shiny_prerendered
1515
```{r setup, include=FALSE}
1616
BioDataScience2::learnr_setup()
1717
SciViews::R(lang = "fr")
18+
# Required for RSConnect
19+
# SciViews::R
20+
library(rlang)
21+
library(data.table)
22+
library(ggplot2)
23+
library(tibble)
24+
library(tidyr)
25+
library(dplyr)
26+
library(dtplyr)
27+
library(broom)
28+
library(forcats)
29+
library(collapse)
30+
library(fs)
31+
library(data.trame)
32+
library(svFast)
33+
library(svTidy)
34+
library(svMisc)
35+
library(svBase)
36+
library(svFlow)
37+
library(data.io)
38+
library(chart)
39+
library(tabularise)
40+
library(SciViews)
41+
# ... more
42+
library(readxl)
43+
library(testthat)
44+
library(equatags)
1845
library(DBI)
1946
library(dbplyr)
47+
library(faraway)
48+
library(janitor)
49+
library(duckdb)
2050
2151
# Données employées
2252
diabetes <- read("diabetes", package = "faraway")

0 commit comments

Comments
 (0)