Skip to content

Commit 0d88447

Browse files
committed
update scaffolding scripts only
1 parent aa4be43 commit 0d88447

File tree

2 files changed

+25
-20
lines changed

2 files changed

+25
-20
lines changed

instructors/data/02-practical-activity-1-fr.R

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ dat <- read_rds(
2929

3030

3131
# Vérifier le format des données d'incidence ----------------------------------------
32-
# étape : Vérifier les noms des colonnes dans les données d'incidence
33-
# correspondre aux exigences d'EpiNow2 concernant les noms des colonnes : date et confirmer
32+
# étape : vérifier si les noms des colonnes dans les données d'incidence
33+
# correspondent aux exigences d'EpiNow2 en matière de noms de colonnes : date et confirmation.
3434

3535
dat
3636

3737
# Définir un temps de génération de {epiparameter} à {EpiNow2} ---------------
3838

39-
# étape : accéder à un intervalle sériel
39+
# étape : accéder à un intervalle sériel (en fonction de la maladie)
4040
dat_serialint <- epiparameter::epiparameter_db(
4141
#<COMPLETE>
4242
)
@@ -50,12 +50,7 @@ dat_generationtime <- EpiNow2::#<COMPLETE>
5050

5151
# Définir les délais entre l'infection et la déclaration du cas pour {EpiNow2} -----------
5252

53-
# étape : définir le délai entre l'apparition des symptômes et la déclaration du cas
54-
# Vous devez interprétez la description fournie dans le tableau Entrées
55-
56-
dat_reportdelay <- EpiNow2::#<COMPLETE>
57-
58-
# étape : définir un délai entre l'infection et l'apparition des symptômes
53+
# étape : définir un délai entre l'infection et l'apparition des symptômes (en fonction de la maladie)
5954
dat_incubationtime <- epiparameter::epiparameter_db(
6055
#<COMPLETE>
6156
)
@@ -69,10 +64,17 @@ dat_incubationtime_max <- dat_incubationtime %>% #<COMPLETE>
6964
# étape : période d'incubation : adaptation à l'interface de distribution {EpiNow2}
7065
dat_incubationtime_epinow <- EpiNow2::#<COMPLETE>
7166

67+
68+
# étape : définir le délai entre l'apparition des symptômes et la déclaration du cas
69+
# Vous devez interprétez la description fournie dans le tableau Entrées
70+
71+
dat_reportdelay <- EpiNow2::#<COMPLETE>
72+
73+
7274
# étape : impression des données requises
7375
dat_generationtime
74-
dat_reportdelay
7576
dat_incubationtime_epinow
77+
dat_reportdelay
7678

7779

7880
# Définir le nombre de cœurs parallèles pour {EpiNow2} --------------------------

instructors/data/02-practical-activity-1.R

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ dat <- read_rds(
2929

3030

3131
# Verify format of incidence data ----------------------------------------
32-
# step: Check the column names in incidence data
33-
# match EpiNow2 requirement of column names: date and confirm
32+
# step: Check if the column names in incidence data
33+
# match the EpiNow2 requirement of column names: date and confirm
3434

3535
dat
3636

3737
# Define a generation time from {epiparameter} to {EpiNow2} ---------------
3838

39-
# step: access a serial interval
39+
# step: access a serial interval (based on the disease)
4040
dat_serialint <- epiparameter::epiparameter_db(
4141
#<COMPLETE>
4242
)
@@ -50,12 +50,7 @@ dat_generationtime <- EpiNow2::#<COMPLETE>
5050

5151
# Define the delays from infection to case report for {EpiNow2} -----------
5252

53-
# step: define delay from symptom onset to case report
54-
# You need to interpret the description given in the Inputs table
55-
56-
dat_reportdelay <- EpiNow2::#<COMPLETE>
57-
58-
# step: define a delay from infection to symptom onset
53+
# step: define a delay from infection to symptom onset (based on the disease)
5954
dat_incubationtime <- epiparameter::epiparameter_db(
6055
#<COMPLETE>
6156
)
@@ -69,10 +64,18 @@ dat_incubationtime_max <- dat_incubationtime %>% #<COMPLETE>
6964
# step: incubation period: adapt to {EpiNow2} distribution interface
7065
dat_incubationtime_epinow <- EpiNow2::#<COMPLETE>
7166

67+
68+
# step: define delay from symptom onset to case report
69+
# You need to interpret the description given in the Inputs table
70+
# located in the shared document
71+
72+
dat_reportdelay <- EpiNow2::#<COMPLETE>
73+
74+
7275
# step: print required input
7376
dat_generationtime
74-
dat_reportdelay
7577
dat_incubationtime_epinow
78+
dat_reportdelay
7679

7780

7881
# Set the number of parallel cores for {EpiNow2} --------------------------

0 commit comments

Comments
 (0)