Jiranuwat commited on
Commit
c210da8
·
1 Parent(s): 1650e3d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -102,7 +102,9 @@ def main():
102
 
103
  # Show SIR
104
  SIR_param = SIR(country,recovery)
105
-
 
 
106
  st.success("SIR model parameters for "+str(country)+" is")
107
  st.success("R0 = "+str(SIR_param[0]))
108
  st.success("Beta = "+str(SIR_param[3]))
 
102
 
103
  # Show SIR
104
  SIR_param = SIR(country,recovery)
105
+
106
+ st.success(all_location[country]['total_cases'].plot())
107
+ st.success(SIR(country,recovery))
108
  st.success("SIR model parameters for "+str(country)+" is")
109
  st.success("R0 = "+str(SIR_param[0]))
110
  st.success("Beta = "+str(SIR_param[3]))