Skip to content

Commit cc52ca8

Browse files
authored
Merge pull request #30 from pythonhealthdatascience/img
IMG: updated process flow image for version 3.1.0
2 parents f09024b + 43e1b9c commit cc52ca8

File tree

5 files changed

+82
-2
lines changed

5 files changed

+82
-2
lines changed

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Change Log
22

3+
## v3.1.0
4+
5+
26th May 2024
6+
7+
* IMG: updated process flow image.
8+
39
## v3.0.1
410

511
2nd May 2024

CHANGES.md.backup

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
# Change Log
2+
3+
## v3.1.0
4+
5+
26th May 2024
6+
7+
* IMG: updated process flow image.
8+
9+
## v3.0.1
10+
11+
2nd May 2024
12+
13+
* PATCH: Trauma patient treatment fixed to use the correct distribution and parameters
14+
* PATCH: Tramna and non-trauma pathways updated to self internal instance of `Scenario` class as opposed to module level variable.
15+
16+
## v3.0.0
17+
18+
22nd April 2024
19+
20+
* ENV: `plotly` v5.21.0 added.
21+
* ENV: Arrival rate and MORE plot have been migrated to be interactive `plotly` format.
22+
* MODULE: `more_plot.py` updated to include a `more_plotly` function.
23+
* PAGES: Multiple replications setting moved from side bar to main window and converted to text input in 🎱 Interactive Simulation page.
24+
* PAGES: Creation of Resources app page. Migration of Links from About page.
25+
* PAGES: Creation of Changes app page: logging all major, minor and patched releases of the app.
26+
* PAGES: About page cleaned up and linked to STARS main study and team.
27+
* PAGES: Emojis 😀 added to app internal page names
28+
29+
## v2.2.0
30+
31+
20th April 2024
32+
33+
* PAGES: Introduce of License page
34+
* PAGES: Links to GitHub, Zenodo archive, Documentation and Tutorial material added to About Page
35+
* ENV: Upgrade `streamlit` to 1.33.0
36+
* ENV: Upgrade `simpy` to 4.1.1
37+
38+
## v2.1.0
39+
40+
8th March 2024
41+
42+
* SIM: Upgraded internal implementation of generating non-overlapping random number streams. This is now implemented to use `np.random.SeedSequence`. See https://numpy.org/doc/stable/reference/random/parallel.html
43+
* PATCH: Removed deprecated use of st.@cache decorator.
44+
45+
## v2.0.0
46+
47+
1st March 2024
48+
49+
* ENV: Upgraded to Python 3.10 and upgrade `numpy`, `pandas`, `matplotlib`` versions etc.
50+
* ENV: Upgraded to streamlit `1.31.1`
51+
* PAGES: Removed deprecated `streamlit`` functions
52+
* PATCH: Fixed `st.setup_page` location in `Overview.py` (main landing page) to avoid runtime error.
53+
54+
## v1.2.0
55+
56+
30th October 2023
57+
58+
* Updated pilot Web App release to support *Toward Sharing Tools and Artefacts for Reusable Simulations in Healthcare* project.
59+
* GITHUB: Included detailed instructions to download the code, install dependencies and run the app locally
60+
* GITHUB: Updated README URLs and included link to SW23 version of app redundancy.
61+
62+
## v1.1.0
63+
64+
23rd January 2023
65+
66+
* Added Dockerfile that creates a python:3.8 image running the latest version of streamlit and the app on port 8989.
67+
68+
## v1.0.0
69+
70+
19th July 2022
71+
72+
* Pilot Web App release to test project feasibility.
73+
* The release supports [conference paper](https://www.theorsociety.com/media/7313/doiorg1036819sw23030.pdf) and talk given at the OR Society Simulation Workshop 2023 (SW23)
74+
* Code can be found in separate repository:

img/process_flow_img.jpg

-125 KB
Binary file not shown.

img/process_flow_img.png

206 KB
Loading

pages/0_🎱_Interactive_simulation.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
INFO_4 = '''**Non-trauma arrivals**
2727
patients with minor illness and no trauma go through registration and
2828
examination activities. A proportion of non-trauma patients require treatment
29-
in a cubicle before being dicharged. '''
29+
in a cubicle before being discharged. '''
3030

3131
SC_TABLE = '''
3232
| | Scenario | Description |
@@ -128,7 +128,7 @@ def get_arrival_chart():
128128
# put info in columns
129129
col1, col2 = st.columns(2)
130130
with col1.expander('Treatment process', expanded=False):
131-
st.image('img/process_flow_img.jpg')
131+
st.image('img/process_flow_img.png')
132132
st.markdown(INFO_3)
133133
st.markdown(INFO_4)
134134

0 commit comments

Comments
 (0)