Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -120,7 +120,7 @@ with col1:
|
|
120 |
if split_var3 == 'Specific Positions':
|
121 |
pos_var1 = st.multiselect('Which positions would you like to include in the tables?', options = trend_table['Position'].unique(), key='pos_var1')
|
122 |
elif split_var3 == 'All':
|
123 |
-
pos_var1 =
|
124 |
|
125 |
proj_var1 = st.slider("Is there a certain projection range you want to view?", 0, 100, (10, 100), key='proj_var1')
|
126 |
|
@@ -155,7 +155,7 @@ with col1:
|
|
155 |
if split_var3 == 'Specific Positions':
|
156 |
pos_var1 = st.multiselect('Which positions would you like to include in the tables?', options = proj_medians_table['Position'].unique(), key='pos_var1')
|
157 |
elif split_var3 == 'All':
|
158 |
-
pos_var1 =
|
159 |
|
160 |
proj_var1 = st.slider("Is there a certain projection range you want to view?", 0, 100, (10, 100), key='proj_var1')
|
161 |
|
|
|
120 |
if split_var3 == 'Specific Positions':
|
121 |
pos_var1 = st.multiselect('Which positions would you like to include in the tables?', options = trend_table['Position'].unique(), key='pos_var1')
|
122 |
elif split_var3 == 'All':
|
123 |
+
pos_var1 = ['PG', 'SG', 'SF', 'PF', 'C']
|
124 |
|
125 |
proj_var1 = st.slider("Is there a certain projection range you want to view?", 0, 100, (10, 100), key='proj_var1')
|
126 |
|
|
|
155 |
if split_var3 == 'Specific Positions':
|
156 |
pos_var1 = st.multiselect('Which positions would you like to include in the tables?', options = proj_medians_table['Position'].unique(), key='pos_var1')
|
157 |
elif split_var3 == 'All':
|
158 |
+
pos_var1 = ['PG', 'SG', 'SF', 'PF', 'C']
|
159 |
|
160 |
proj_var1 = st.slider("Is there a certain projection range you want to view?", 0, 100, (10, 100), key='proj_var1')
|
161 |
|