Skip to content

Commit db946d4

Browse files
committed
Learnr module 5 ready for 2025-2026
1 parent bc13be0 commit db946d4

File tree

3 files changed

+37
-2
lines changed

3 files changed

+37
-2
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.4.0
2+
Version: 2025.5.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.5.0
2+
3+
- Learnr **B05La_nls**, revised for 2025-2026.
4+
15
# BioDataScience2 2025.4.0
26

37
- Learnr **B04La_glm**, revised for 2025-2026.

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

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,37 @@ runtime: shiny_prerendered
1414
```{r setup, include=FALSE}
1515
BioDataScience2::learnr_setup()
1616
SciViews::R("model", 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+
# 'model' and 'infer' packages
45+
library(modelit)
46+
library(distributional)
47+
library(inferit)
1748
1849
set.seed(42)
1950
tumor <- dtx(
@@ -45,7 +76,7 @@ BioDataScience2::learnr_server(input, output, session)
4576

4677
## Croissance exponentielle
4778

48-
Réalisez une régression non linéaire sur le jeu de données `df1` de la variable `y` en fonction de la variable `t`.
79+
Ajustez une régression non linéaire sur le jeu de données `df1` de la variable `y` en fonction de la variable `t`.
4980

5081
```{r expo_init}
5182
exponent <- function(x, y0, k) y0 * exp(k * x)

0 commit comments

Comments
 (0)