We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 529591a commit df42247Copy full SHA for df42247
inst/tutorials/02b_decouverte/decouverte.Rmd
@@ -575,7 +575,7 @@ head( )
575
576
```{r case_when-hint}
577
# Ajouter la nouvelles variable
578
-bio <- mutate(bio,
+bio <- mutate(biometry,
579
bmi_schedule = case_when(
580
bmi ~ "underweight",
581
bmi ~ "normal weight",
@@ -596,7 +596,7 @@ biometry <- mutate(biometry,
596
bmi >= 30 ~ "obese"
597
))
598
# Afficher le début du tableau
599
-head(bio)
+head(biometry)
600
```
601
602
```{r case_when-check}
0 commit comments