Spaces:
Running
Running
James McCool
commited on
Commit
·
3e516dd
1
Parent(s):
33e229f
fixed stat type selections
Browse files
app.py
CHANGED
@@ -397,9 +397,10 @@ with tab6:
|
|
397 |
key='prop_source',
|
398 |
)
|
399 |
if game_select_var == 'Aggregate':
|
400 |
-
prop_type_var = st.selectbox('Select prop category', options = ['All Props', '
|
|
|
401 |
elif game_select_var == 'Pick6':
|
402 |
-
prop_type_var = st.selectbox('Select prop category', options = ['All Props', '
|
403 |
|
404 |
if st.button('Simulate Prop Category'):
|
405 |
with col2:
|
|
|
397 |
key='prop_source',
|
398 |
)
|
399 |
if game_select_var == 'Aggregate':
|
400 |
+
prop_type_var = st.selectbox('Select prop category', options = ['All Props', 'NFL_GAME_PLAYER_PASSING_YARDS', 'NFL_GAME_PLAYER_RUSHING_YARDS', 'NFL_GAME_PLAYER_PASSING_ATTEMPTS', 'NFL_GAME_PLAYER_PASSING_TOUCHDOWNS', 'NFL_GAME_PLAYER_RUSHING_ATTEMPTS',
|
401 |
+
'NFL_GAME_PLAYER_RECEIVING_RECEPTIONS', 'NFL_GAME_PLAYER_RECEIVING_YARDS', 'NFL_GAME_PLAYER_RECEIVING_TOUCHDOWNS'])
|
402 |
elif game_select_var == 'Pick6':
|
403 |
+
prop_type_var = st.selectbox('Select prop category', options = ['All Props', 'Rush + Rec Yards', 'Rush + Rec TDs', 'Interceptions Thrown', 'Passing Yards', 'Passing Attempts', 'Passing TDs', 'Rushing Attempts', 'Rushing Yards', 'Receptions', 'Receiving Yards', 'Receiving TDs'])
|
404 |
|
405 |
if st.button('Simulate Prop Category'):
|
406 |
with col2:
|