Skip to content

Commit 47c89f1

Browse files
committed
Minor changes in A06La_recombination
1 parent add2037 commit 47c89f1

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
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.3.1
2+
Version: 2022.3.2
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+
# BioDataScience1 2022.3.2
2+
3+
- Minor changes in **A06La_recombination**.
4+
15
# BioDataScience1 2022.3.1
26

37
- Reworked version of **A05La_wrangling** with 5 exercises instead of 3.

inst/tutorials/A06La_recombination/A06La_recombination.Rmd

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ knitr::kable(long1)
7777

7878
### Première variante de l'argument cols
7979

80-
Complétez le code afin d'obtenir le tableau `long`.
80+
Complétez le code afin d'obtenir le tableau `long` avec une fonction tidy.
8181

8282
```{r wide-prep}
8383
time <- 1989:1995
@@ -114,6 +114,7 @@ head(long)
114114
```
115115

116116
```{r wide1_h3-solution}
117+
## Solution ##
117118
long %<-% pivot_longer(wide, cols = "1989":"1995", names_to = "year",
118119
values_to = "circumf")
119120
head(long)
@@ -236,9 +237,9 @@ demography <- dtx(
236237
)
237238
```
238239

239-
Complétez l'instruction ci-dessous.
240+
Complétez l'instruction ci-dessous en utilisant une fonction tidy.
240241

241-
```{r long_h2, exercise = TRUE, exercise.setup = "long-prep"}
242+
```{r long_h2, exercise=TRUE, exercise.setup="long-prep"}
242243
___ %<-% ___(___, names_from = ___, values_from = ___)
243244
head(___)
244245
```
@@ -295,7 +296,7 @@ Sur base du tableau ci-dessous :
295296
knitr::kable(bacteria)
296297
```
297298

298-
Modifiez le tableau `bacteria` afin d'obtenir le tableau suivant que vous nommerez `bact` :
299+
Modifiez le tableau `bacteria` afin d'obtenir le tableau suivant que vous nommerez `bact` en utilisant une fonction speedy :
299300

300301
```{r}
301302
knitr::kable(bact)

0 commit comments

Comments
 (0)