Skip to content

Commit e18d8c7

Browse files
minor changes
1 parent f3ac2cf commit e18d8c7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

inst/tutorials/B01La_rappel/B01La_rappel.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 II Module 1** Rappel du cours de sdd1."
55
tutorial:
66
id: "B01La_rappel"
7-
version: 2.1.2/22
7+
version: 2.1.3/22
88
output:
99
learnr::tutorial:
1010
progressive: true
@@ -488,9 +488,9 @@ Vous travaillez toujours sur le jeu des données `biometry` du package `BioDataS
488488
# Importation des données
489489
biometry <- read("biometry", package = "BioDataScience", lang = "FR")
490490
# Calcul du bmi
491-
biometry <- mutate(biometry,
492-
height_m = height/100,
493-
bmi = weight/height_m^2)
491+
biometry <- mutate(___,
492+
height_m = ___/100,
493+
bmi = ___/___^2)
494494
# résumé de jeu de données
495495
summary(biometry)
496496
```
@@ -501,7 +501,7 @@ biometry <- read("biometry", package = "BioDataScience", lang = "FR")
501501
# Calcul du bmi
502502
biometry <- mutate(biometry,
503503
height_m = ___/100,
504-
bmi = ___/___^2)
504+
bmi = ___/height_m^2)
505505
# résumé de jeu de données
506506
summary(biometry)
507507

0 commit comments

Comments
 (0)