Spaces:
Running
Running
James McCool
commited on
Commit
·
24d694e
1
Parent(s):
1021da9
Add radio button for view selection in app.py
Browse files
app.py
CHANGED
@@ -53,6 +53,8 @@ st.markdown("""
|
|
53 |
}
|
54 |
</style>""", unsafe_allow_html=True)
|
55 |
|
|
|
|
|
56 |
tab1, tab2, tab3 = st.tabs(["Scoring Percentages", "Player ROO", "Optimals"])
|
57 |
|
58 |
with tab1:
|
|
|
53 |
}
|
54 |
</style>""", unsafe_allow_html=True)
|
55 |
|
56 |
+
view_var = st.radio("Select view", ["Simple", "Advanced"])
|
57 |
+
|
58 |
tab1, tab2, tab3 = st.tabs(["Scoring Percentages", "Player ROO", "Optimals"])
|
59 |
|
60 |
with tab1:
|