Spaces:
Running
Running
Update app.py
Browse files
app.py
CHANGED
@@ -222,7 +222,7 @@ with col1:
|
|
222 |
hitter_stats = load_table(data_hold, 'FD_Slate_Hitters')
|
223 |
hitter_stats.replace('', np.nan, inplace=True)
|
224 |
hitter_stats = hitter_stats.dropna(subset=['Order'])
|
225 |
-
stat_var1 = st.radio("What sheets would you like to view?", options = ['Current Slate Player Stats', 'Current Slate Team Stats'
|
226 |
split_var1 = st.radio("Are you running the full slate or certain games?", ('Full Slate Run', 'Specific Games'), key='split_var1')
|
227 |
pos_split1 = st.radio("Are you viewing all positions or specific positions?", ('All Positions', 'Specific Positions'), key='pos_split1')
|
228 |
if pos_split1 == 'Specific Positions':
|
|
|
222 |
hitter_stats = load_table(data_hold, 'FD_Slate_Hitters')
|
223 |
hitter_stats.replace('', np.nan, inplace=True)
|
224 |
hitter_stats = hitter_stats.dropna(subset=['Order'])
|
225 |
+
stat_var1 = st.radio("What sheets would you like to view?", options = ['Current Slate Player Stats', 'Current Slate Team Stats'], key='stat_var1')
|
226 |
split_var1 = st.radio("Are you running the full slate or certain games?", ('Full Slate Run', 'Specific Games'), key='split_var1')
|
227 |
pos_split1 = st.radio("Are you viewing all positions or specific positions?", ('All Positions', 'Specific Positions'), key='pos_split1')
|
228 |
if pos_split1 == 'Specific Positions':
|