Skip to content

Commit

Permalink
Changed language around the calculated first admission and override.
Browse files Browse the repository at this point in the history
  • Loading branch information
Max Taggart committed Mar 31, 2020
1 parent c80af9a commit ec1f0dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
show_more_info_about_this_tool(st=st, model=m, parameters=p, defaults=DEFAULTS, notes=notes)

off = calc_offset(m.census_df, p)
st.markdown(f"Calculated Days Since First Hospital Admission: {off}")
st.markdown(f"Calculated Days from First Admission to COVID-19 Hospital Census Date: {off}")
selected_offset = st.number_input(
"Days Since First Hospital Admission, Manual Override",
"Days from First Hospital Admission to COVID-19 Hospital Census Date, Manual Override",
value = off if p.selected_offset == -1 else p.selected_offset)
p.selected_offset = selected_offset
m = shift_truncate_tables(m, p, selected_offset)
Expand Down

0 comments on commit ec1f0dc

Please sign in to comment.