@@ -55,7 +55,7 @@ def parse_args():
55
55
int ,
56
56
0 ,
57
57
None ,
58
- "Currently Hospitalized COVID-19 Patients (>= 0)" ,
58
+ "Currently hospitalized COVID-19 patients (>= 0)" ,
59
59
True ,
60
60
),
61
61
(
@@ -74,7 +74,7 @@ def parse_args():
74
74
"Doubling time before social distancing (days)" ,
75
75
True ,
76
76
),
77
- ("--hospitalized-days" , int , 0 , None , "Average Hospital Length of Stay ( days)" , True ),
77
+ ("--hospitalized-days" , int , 0 , None , "Average hospital length of stay (in days)" , True ),
78
78
(
79
79
"--hospitalized-rate" ,
80
80
float ,
@@ -83,14 +83,14 @@ def parse_args():
83
83
"Hospitalized Rate: 0.00001 - 1.0" ,
84
84
True ,
85
85
),
86
- ("--icu-days" , int , 0 , None , "Average Days in ICU" , True ),
87
- ("--icu-rate" , float , 0.0 , 1.0 , "ICU Rate : 0.0 - 1.0" , True ),
86
+ ("--icu-days" , int , 0 , None , "Average days in ICU" , True ),
87
+ ("--icu-rate" , float , 0.0 , 1.0 , "ICU rate : 0.0 - 1.0" , True ),
88
88
(
89
89
"--market_share" ,
90
90
float ,
91
91
0.00001 ,
92
92
1.0 ,
93
- "Hospital Market Share (0.00001 - 1.0)" ,
93
+ "Hospital market share (0.00001 - 1.0)" ,
94
94
True ,
95
95
),
96
96
("--infectious-days" , float , 0.0 , None , "Infectious days" , True ),
@@ -100,11 +100,11 @@ def parse_args():
100
100
float ,
101
101
0.0 ,
102
102
1.0 ,
103
- "Social Distancing Reduction Rate : 0.0 - 1.0" ,
103
+ "Social distancing reduction rate : 0.0 - 1.0" ,
104
104
True ,
105
105
),
106
- ("--population" , int , 1 , None , "Regional Population >= 1" , True ),
107
- ("--ventilated-days" , int , 0 , None , "Average Days on Ventilator " , True ),
106
+ ("--population" , int , 1 , None , "Regional population >= 1" , True ),
107
+ ("--ventilated-days" , int , 0 , None , "Average days on ventilator " , True ),
108
108
("--ventilated-rate" , float , 0.0 , 1.0 , "Ventilated Rate: 0.0 - 1.0" , True ),
109
109
):
110
110
parser .add_argument (
0 commit comments