You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+37Lines changed: 37 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,8 +5,45 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). Dates formatted as YYYY-MM-DD as per [ISO standard](https://www.iso.org/iso-8601-date-and-time-format.html).
7
7
8
+
## v0.3.0 - 2025-11-06
9
+
10
+
This release adds new pages on the mathematical proof of correctness, discrete-event simulation, and conclusions/feedback, as well as template repositories for structuring work as a package. It fixes the calculation of R time-weighted measures, updates the Python approach to determining warm-up length, and extends all pages to cover all performance metrics. Numerous smaller improvements are also included.
11
+
12
+
### Added
13
+
14
+
* Template repositories for package structure.
15
+
* Mathematical proof of correctness page.
16
+
* Discrete-event simulation introductory page.
17
+
* Conclusions page.
18
+
* Feedback page.
19
+
20
+
### Fixed
21
+
22
+
* Add correction for R time-weighted measures so last interval is included in calculations.
23
+
24
+
### Changed
25
+
26
+
* Pages following *Performance Measures* now use **all** metrics (and not just two) for Python and R.
27
+
* Changed Python approach for determining length of warm-up (previous approach unsuitable when using all metrics).
28
+
* Added patient end-time logging to all simulation model pages.
29
+
* Upgraded to `sim-tools` v1.0.0 (Python) and add `queueing` (R).
30
+
31
+
Also some minor improvements and refinements, including:
32
+
33
+
* Extra desk-check suggestions in `verification_validation.qmd`
34
+
* Removed colour variable for R sensitivity plots.
35
+
* Expanded and cross-linked stuff on guidelines in `sharing/archive.qmd` and `intro/guidelines.qmd`.
36
+
* Small corrections in README, docstrings, linting.
37
+
* Refactoring tests.
38
+
* Clarifications on R data storage, seed sequences, correlated streams, and limitations of structuring research as a package.
39
+
* Mentions of MRAN, P3M, commit pinning, `data-raw`, `pins` and `{targets}`.
40
+
* Mentioned relevant verification/validation concepts in topic pages.
41
+
* Added link to repository `renv.lock` on environment page.
42
+
8
43
## v0.2.0 - 2025-10-14
9
44
45
+
This release adds a large number of new pages. It also introduces pre-commits, contributor acknowledgements, a contributing guide, interface improvements, updated introduction boxes, and giscus comments.
For simulations with very long run times, you may wish to explore the [{targets}](https://books.ropensci.org/targets/) package.
395
+
396
+
With `{targets}`, you can set up your pipeline so that input changes (like updates to parameter files or scenario definitions) trigger the package to automatically re-run only the affected simulations and analyses, while all other results are reused from cache. This targeted re-running helps save computation time when there are many slow scenarios to run.
397
+
398
+
If you change the code inside your model function, `{targets}` will detect those updates and make sure all impacted analysis steps are re-run.
399
+
400
+
*Note: This package hasn't been personally tried in this project, so we can't vouch for whether it definitely works reliably with simmer simulation models - it's just a cool package we've heard about! For guides on using this, see the official [{targets} manual](https://books.ropensci.org/targets/)*.
401
+
390
402
:::
391
403
404
+
::::
405
+
392
406
## Sensitivity analysis
393
407
394
408
<divclass="h3-tight"></div>
@@ -399,6 +413,8 @@ Scenario analysis focuses on a set of pre-defined situations which are plausible
399
413
400
414
Sensitivity analysis varies one parameter (or a small group of parameters) and assess the impact of small changes in that parameter on outcomes. The purpose is to understand **how uncertainty in the inputs affects the model**, and how **robust** the model is to variation in those inputs.
401
415
416
+
Sensitivity analysis is an important for model validation (and forms part of "[experimentation validation](../verification_validation/verification_validation.qmd#experimentation-validation)").
417
+
402
418
### Running sensitivity analyses
403
419
404
420
Sensitivity analyses should be run programmatically, just like scenario analyses, and the code should be shared for reproducibility.
0 commit comments