-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathOverview.py
More file actions
25 lines (20 loc) · 790 Bytes
/
Overview.py
File metadata and controls
25 lines (20 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import streamlit as st
# update to wide page settings to help display results side by side
st.set_page_config(
page_title="Urgent Care SimPy App",
layout="wide",
initial_sidebar_state="expanded",
)
# File paths
PROCESS_IMG = "resources/call_centre_process.png"
# Text to display
INFO_1 = "**A simple simulation model of a urgent care call centre.**"
INFO_2 = """Patient callers arrive at random and wait to be triaged by
a **call operator**. Once triage is complete a proportion wait to a
call back from a **nurse** and then undergo nurse consultation.
"""
st.title("A Discrete-Event Simulation of an Urgent Care Call Centre")
st.markdown(INFO_1)
st.markdown(INFO_2)
with st.expander("The patient process.", expanded = True):
st.image(PROCESS_IMG, width='stretch')