@@ -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 , "Hospital Length of Stay (days)" , True ),
77
+ ("--hospitalized-days" , int , 0 , None , "Average Hospital Length of Stay (days)" , True ),
78
78
(
79
79
"--hospitalized-rate" ,
80
80
float ,
@@ -83,7 +83,7 @@ def parse_args():
83
83
"Hospitalized Rate: 0.00001 - 1.0" ,
84
84
True ,
85
85
),
86
- ("--icu-days" , int , 0 , None , "Days in ICU" , True ),
86
+ ("--icu-days" , int , 0 , None , "Average Days in ICU" , True ),
87
87
("--icu-rate" , float , 0.0 , 1.0 , "ICU Rate: 0.0 - 1.0" , True ),
88
88
(
89
89
"--market_share" ,
@@ -104,7 +104,7 @@ def parse_args():
104
104
True ,
105
105
),
106
106
("--population" , int , 1 , None , "Regional Population >= 1" , True ),
107
- ("--ventilated-days" , int , 0 , None , "Days on Ventilator" , 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 (arg , type = validator (arg , cast , min_value , max_value , required ))
0 commit comments