Skip to content

Commit f4540df

Browse files
committed
Learnr for module 4
1 parent 9498bad commit f4540df

File tree

5 files changed

+32
-2
lines changed

5 files changed

+32
-2
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: BioDataScience3
2-
Version: 2025.3.1
2+
Version: 2025.4.0
33
Title: A Series of Learnr Documents for Biological Data Science 3
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+
# BioDataScience3 2025.4.0
2+
3+
- Revision of **C04La_ts_intro** for 2025-2026.
4+
15
# BioDataScience3 2025.3.1
26

37
- A bug in {gradethis} is avoided (error when an object is generated, printed, and then, another object is generated with a wrong name in the same exercise). It appeared in **C01Lb_ml1**, **C02La_cv**, and **C02Lb_ml2**. The workaround consists in printing the intermediate object at the end of the exercise.

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

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,32 @@ runtime: shiny_prerendered
1515
```{r setup, include=FALSE}
1616
BioDataScience3::learnr_setup()
1717
SciViews::R("ts", 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(pastecs)
43+
library(testthat)
1844
1945
nottem <- read("nottem", package = "datasets")
2046
set.seed(13313)
@@ -186,7 +212,7 @@ grade_code("Pour spécifier le temps d'un objet **ts**, vous commencez par chois
186212

187213
### Série 2
188214

189-
Toujours à partir du vecteur des observations `vec`, vous allez maintenant considérer que votre série fictive débute le 1er juillet 2005. Faites le même exercice que ci-dessus avec cette nouvelle information.
215+
Toujours à partir du vecteur des observations `vec`, vous allez maintenant considérer que votre série fictive débute le 1^er^ juillet 2005. Faites le même exercice que ci-dessus avec cette nouvelle information.
190216

191217
```{r ts2, exercise=TRUE}
192218
serie <- ts(vec, start = c(___,___), frequency = ___)
106 KB
Loading
43.8 KB
Loading

0 commit comments

Comments
 (0)