Update app.py
Browse files
app.py
CHANGED
|
@@ -160,7 +160,7 @@ with st.form(key="information", clear_on_submit=True):
|
|
| 160 |
city = mid_col.selectbox("City:", options= set(stores["city"].unique()))
|
| 161 |
state = mid_col.selectbox("State:", options= list(stores["state"].unique()))
|
| 162 |
cluster = mid_col.selectbox("Store Cluster:", options= list(stores["cluster"].unique()))
|
| 163 |
-
store_type = mid_col.radio("Store Type:", options= sorted(set(stores["store_type"].unique()))
|
| 164 |
|
| 165 |
# Setting up input data for 3rd column
|
| 166 |
right_col.markdown("**ADDITIONAL DATA**")
|
|
|
|
| 160 |
city = mid_col.selectbox("City:", options= set(stores["city"].unique()))
|
| 161 |
state = mid_col.selectbox("State:", options= list(stores["state"].unique()))
|
| 162 |
cluster = mid_col.selectbox("Store Cluster:", options= list(stores["cluster"].unique()))
|
| 163 |
+
store_type = mid_col.radio("Store Type:", options= sorted(set(stores["store_type"].unique())), horizontal = True)
|
| 164 |
|
| 165 |
# Setting up input data for 3rd column
|
| 166 |
right_col.markdown("**ADDITIONAL DATA**")
|