@@ -179,7 +179,7 @@ def display_sidebar(st, d: Parameters) -> Parameters:
179
179
st_obj = st .sidebar
180
180
current_hospitalized_input = NumberInput (
181
181
st_obj ,
182
- "Currently Hospitalized COVID-19 Patients " ,
182
+ "Currently hospitalized COVID-19 patients " ,
183
183
min_value = 0 ,
184
184
value = d .current_hospitalized ,
185
185
step = 1 ,
@@ -202,10 +202,10 @@ def display_sidebar(st, d: Parameters) -> Parameters:
202
202
format = "%f" ,
203
203
)
204
204
current_date_input = DateInput (
205
- st_obj , "Current date (Default is today)" , value = d .current_date ,
205
+ st_obj , "Current date (default is today)" , value = d .current_date ,
206
206
)
207
207
date_first_hospitalized_input = DateInput (
208
- st_obj , "Date of first hospitalized case - Enter this date to have chime estimate the initial doubling time" ,
208
+ st_obj , "Date of first hospitalized case (enter this date to have CHIME estimate the initial doubling time) " ,
209
209
value = d .date_first_hospitalized ,
210
210
)
211
211
mitigation_date_input = DateInput (
@@ -234,45 +234,45 @@ def display_sidebar(st, d: Parameters) -> Parameters:
234
234
)
235
235
hospitalized_days_input = NumberInput (
236
236
st_obj ,
237
- "Average Hospital Length of Stay ( days)" ,
237
+ "Average hospital length of stay (in days)" ,
238
238
min_value = 0 ,
239
239
value = d .hospitalized .days ,
240
240
step = 1 ,
241
241
format = "%i" ,
242
242
)
243
243
icu_days_input = NumberInput (
244
244
st_obj ,
245
- "Average Days in ICU" ,
245
+ "Average days in ICU" ,
246
246
min_value = 0 ,
247
247
value = d .icu .days ,
248
248
step = 1 ,
249
249
format = "%i" ,
250
250
)
251
251
ventilated_days_input = NumberInput (
252
252
st_obj ,
253
- "Average Days on Ventilator " ,
253
+ "Average days on ventilator " ,
254
254
min_value = 0 ,
255
255
value = d .ventilated .days ,
256
256
step = 1 ,
257
257
format = "%i" ,
258
258
)
259
259
market_share_pct_input = PercentInput (
260
260
st_obj ,
261
- "Hospital Market Share (%)" ,
261
+ "Hospital market share (%)" ,
262
262
min_value = 0.5 ,
263
263
value = d .market_share ,
264
264
)
265
265
population_input = NumberInput (
266
266
st_obj ,
267
- "Regional Population " ,
267
+ "Regional population " ,
268
268
min_value = 1 ,
269
269
value = (d .population ),
270
270
step = 1 ,
271
271
format = "%i" ,
272
272
)
273
273
infectious_days_input = NumberInput (
274
274
st_obj ,
275
- "Infectious Days " ,
275
+ "Infectious days " ,
276
276
min_value = 0 ,
277
277
value = d .infectious_days ,
278
278
step = 1 ,
0 commit comments