We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8493d33 commit 9223eabCopy full SHA for 9223eab
src/app.py
@@ -52,7 +52,10 @@
52
st.markdown(chart_descriptions(new_admit_chart))
53
54
if st.checkbox("Show Projected Admissions in tabular form"):
55
- draw_projected_admissions_table(st, admissions_df, as_date=p.as_date)
+ if st.checkbox("Show Daily Counts"):
56
+ draw_projected_admissions_table(st, admissions_df, as_date=p.as_date, daily_count=True)
57
+ else:
58
+ draw_projected_admissions_table(st, admissions_df, as_date=p.as_date, daily_count=False)
59
st.subheader("Admitted Patients (Census)")
60
st.markdown(
61
"Projected **census** of COVID-19 patients, accounting for arrivals and discharges at Penn hospitals"
0 commit comments