Skip to content

Commit bab02f4

Browse files
committed
chore(nreps): correct page references of nreps.qmd to replications.qmd
1 parent 9bfa6dc commit bab02f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

pages/model/patients.qmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ There are two arguments required by the initialiser: `param` and `run_number`.
250250

251251
The `param` argument accepts an instance of the `Parameters` object, which groups all necessary simulation values in one place. This minimises the number of arguments required by `Model`, as it only needs one input for parameters.
252252

253-
The `run_number` will be used when generating the random seeds. This is important when performing multiple replications, as it ensures each run gets a unique seed (see the [Replications](../output_analysis/n_reps.qmd) page for more details).
253+
The `run_number` will be used when generating the random seeds. This is important when performing multiple replications, as it ensures each run gets a unique seed (see the [Replications](../output_analysis/replications.qmd) page for more details).
254254

255255
<br>
256256

@@ -455,7 +455,7 @@ There are two arguments required by the function: `param` and `run_number`.
455455

456456
The `param` argument requires the named list of parameters from the `create_params()` function, which groups all necessary simulation values in one list. This minimise the number of arguments required by `model()`, as it only needs one input for parameters.
457457

458-
The `run_number` will be used when generating the random seeds. This is important when performing multiple replications, as it ensures each run gets a unique seed (see the [Replications](../output_analysis/n_reps.qmd) page for more details).
458+
The `run_number` will be used when generating the random seeds. This is important when performing multiple replications, as it ensures each run gets a unique seed (see the [Replications](../output_analysis/replications.qmd) page for more details).
459459

460460
<br>
461461

pages/output_analysis/outputs.qmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ We need to update the `Model` class so its `run` method returns a list of patien
148148

149149
### Runner class
150150

151-
We're also introducing a new `Runner` class, responsible for running simulations and performing results calculations. This keeps calculation logic separate from the core modelling code. Also, this class will be modified to perform multiple model runs on the [Replications](n_reps.qmd) page.
151+
We're also introducing a new `Runner` class, responsible for running simulations and performing results calculations. This keeps calculation logic separate from the core modelling code. Also, this class will be modified to perform multiple model runs on the [Replications](replications.qmd) page.
152152

153153
The basic structure of `Runner` is as follows. It initialises with simulation parameters, runs the model for a single replication, and organises results into separate patient-level and run-level outputs.
154154

0 commit comments

Comments
 (0)