Releases: TomMonks/sim-tools
Releases · TomMonks/sim-tools
v0.8.0
Added
- Add
simpy
andtreat-sim
to the environment, as these were required in the notebooks indocs/
. - Add
nbqa
andpylint
to the environment for linting, plus a relevant fileslint.sh
and.pylintrc
. - Add tests for
output_analysis
functions (functional, unit and back tests). - Add validation of parameters in
ReplicationsAlgorithm
. - Add validation of data type in
OnlineStatistics
.
Changed
- Simplified distribution value type tests to a single test where possible using
pytest.mark.parametrize
. - Linted
.py
and.ipynb
files usingpylint
(most addressed, some remain unresolved). - Provided advice on tests, building docs and linting in the
README.md
. 00_front_page.md
now just importedREADME.md
(reducing duplication, and keping it up-to-date).
Removed
- Removed duplicate
sw21_tutorial.ipynb
.
Fixed
- Within
confidence_interval_method
, convert data provided toOnlineStatistics
tonp.array
so that it is actually used to update the class (when before, it was not, as it was a list).
v0.8.0
Added
- Add
simpy
andtreat-sim
to the environment, as these were required in the notebooks indocs/
. - Add
nbqa
andpylint
to the environment for linting, plus a relevant fileslint.sh
and.pylintrc
. - Add tests for
output_analysis
functions (functional, unit and back tests). - Add validation of parameters in
ReplicationsAlgorithm
. - Add validation of data type in
OnlineStatistics
.
Changed
- Simplified distribution value type tests to a single test where possible using
pytest.mark.parametrize
. - Linted
.py
and.ipynb
files usingpylint
(most addressed, some remain unresolved). - Provided advice on tests, building docs and linting in the
README.md
. 00_front_page.md
now just importedREADME.md
(reducing duplication, and keping it up-to-date).
Removed
- Removed duplicate
sw21_tutorial.ipynb
.
Fixed
- Within
confidence_interval_method
, convert data provided toOnlineStatistics
tonp.array
so that it is actually used to update the class (when before, it was not, as it was a list).
v0.7.1
v0.7.0
Added
output_analysis
module - focussed at the moment on selecting the number of replicationsReplicationsAlgorithm
that implements the automated approach to selecting the number of replications for a single performance measures.ReplicationsAlgorithmModelAdapter
- aProtocol
to adapt any model to work with withReplicationsAlgorithm
confidence_interval_method
- select the number of replication using the classical confidence interval methodplotly_confidence_interval_method
- visualise the confidence interval method using plotly.ReplicationObserver
aProtocol
for observering the replications algorithmReplicationTabulizer
record replications algorithm in a pandas dataframe.- Documentation for
ReplicationsAlgorithm
Updated
sim-tools
dev conda environment now pip installs local python package in editable model.
v0.6.1
v0.6.0
Added
- Added
nspp_plot
andnspp_simulation
functions totime_dependent
module. - DOCS: added
nspp_plot
andnspp_simulation
examples to time dependent notebook - DOCS: simple trace notebook
Changed
- BREAKING: to prototype trace functionality. config name -> class breaks with v0.5.0
Fixed
- THINNING: patched compatibility of thinning algorithm to work with numpy >= v2.
np.Inf
->np.inf
v0.5.0
Added
- EXPERIMENTAL: added
trace
module withTraceable
class for colour coding output from different processes and tracking individual patients.
Fixed
- DIST: fix to
NSPPThinning
sampling to pre-calcualte mean IAT to ensure that correct exponential mean is used. - DIST: normal distribution uses minimum value instead of resampling on negative value.