Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -584,7 +584,7 @@ with tab6:
|
|
584 |
with col3:
|
585 |
player_choice_var6 = st.radio("Would you like to view all players props or specific ones?", ('All', 'Specific Players'), key='player_choice_var6')
|
586 |
if player_choice_var6 == 'Specific Players':
|
587 |
-
player_var6 = st.multiselect('Which players would you like to include in the tables?', options = betsheet_frame['
|
588 |
elif player_choice_var6 == 'All':
|
589 |
player_var6 = betsheet_frame.Player.values.tolist()
|
590 |
betsheet_disp = betsheet_frame.copy()
|
|
|
584 |
with col3:
|
585 |
player_choice_var6 = st.radio("Would you like to view all players props or specific ones?", ('All', 'Specific Players'), key='player_choice_var6')
|
586 |
if player_choice_var6 == 'Specific Players':
|
587 |
+
player_var6 = st.multiselect('Which players would you like to include in the tables?', options = betsheet_frame['Player'].unique(), key='player_var6')
|
588 |
elif player_choice_var6 == 'All':
|
589 |
player_var6 = betsheet_frame.Player.values.tolist()
|
590 |
betsheet_disp = betsheet_frame.copy()
|