Skip to content

Commit f9fb545

Browse files
authored
Add acknowledgement
1 parent eeac966 commit f9fb545

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

app.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def sim_sir(S, I, R, beta, gamma, n_days, beta_decay=None):
176176
projection = pd.DataFrame.from_dict(data_dict)
177177

178178
st.subheader("New Admissions")
179-
st.markdown("The number of **daily** new COVID-19 admissions at Penn hospitals")
179+
st.markdown("Projected number of **daily** COVID-19 admissions at Penn hospitals")
180180

181181
# New cases
182182
projection_admits = projection.iloc[:-1, :] - projection.shift(1)
@@ -202,7 +202,7 @@ def sim_sir(S, I, R, beta, gamma, n_days, beta_decay=None):
202202
admits_table.index = range(admits_table.shape[0])
203203
admits_table = admits_table.fillna(0)
204204

205-
if st.checkbox("Show Admissions Data"):
205+
if st.checkbox("Show Projected Admissions in tabular form"):
206206
st.dataframe(admits_table)
207207

208208
st.subheader("Admitted Patients (Census)")
@@ -244,13 +244,13 @@ def sim_sir(S, I, R, beta, gamma, n_days, beta_decay=None):
244244
census_table.loc[0, :] = 0
245245
census_table = census_table.dropna()
246246

247-
if st.checkbox("Show Census Data"):
247+
if st.checkbox("Show Projected Census in tabular form"):
248248
st.dataframe(census_table)
249249

250250
st.markdown(
251251
"""**Click the checkbox below to view additional data generated by this simulation**"""
252252
)
253-
if st.checkbox("Show Additional Data"):
253+
if st.checkbox("Show Additional Projections"):
254254
st.subheader("Projected Hospitalization Demand at Penn Medicine Facilities")
255255
st.markdown(
256256
"The number of COVID-19 patients projected to require hospitalization at Penn"
@@ -292,7 +292,9 @@ def sim_sir(S, I, R, beta, gamma, n_days, beta_decay=None):
292292
if st.checkbox("Show Raw SIR Similation Data"):
293293
st.dataframe(infect_table)
294294

295-
st.subheader("References")
295+
st.subheader("References & Acknowledgements")
296296
st.markdown(
297-
"""* AHA Webinar, Feb 26, James Lawler, MD, an associate professor University of Nebraska Medical Center, What Healthcare Leaders Need To Know: Preparing for the COVID-19"""
297+
"""* AHA Webinar, Feb 26, James Lawler, MD, an associate professor University of Nebraska Medical Center, What Healthcare Leaders Need To Know: Preparing for the COVID-19
298+
* We would like to recognize the valuable assistance in consultation and review of model assumptions by Michael Z. Levy, PhD, Associate Professor of Epidemiology, Department of Biostatistics, Epidemiology and Informatics at the Perelman School of Medicine
299+
"""
298300
)

0 commit comments

Comments
 (0)