Alvianojs commited on
Commit
87b3d89
·
1 Parent(s): 36949c9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -120,7 +120,7 @@ def main():
120
 
121
  if checkbox_two_pred:
122
  st.subheader("Predictive Traffic Map")
123
- st.pyplot(calling_pred_map_viz(counts_df))
124
 
125
  hour_choice = st.selectbox(
126
  "Choose Hour",
@@ -132,6 +132,8 @@ def main():
132
  "Thursday", "Friday","Saturday", "Sunday"]
133
  day_choice = st.selectbox("Choose Day of the Week", options = days, key = "day", index = days.index("Saturday"))
134
 
 
 
135
 
136
 
137
 
 
120
 
121
  if checkbox_two_pred:
122
  st.subheader("Predictive Traffic Map")
123
+
124
 
125
  hour_choice = st.selectbox(
126
  "Choose Hour",
 
132
  "Thursday", "Friday","Saturday", "Sunday"]
133
  day_choice = st.selectbox("Choose Day of the Week", options = days, key = "day", index = days.index("Saturday"))
134
 
135
+ st.pyplot(calling_pred_map_viz(counts_df, day_choice, hour_choice))
136
+
137
 
138
 
139