Spaces:
Running
Running
James McCool
commited on
Commit
·
1e90b7c
1
Parent(s):
b4512a0
removed floor and ceiling from simple view
Browse files
app.py
CHANGED
@@ -217,7 +217,7 @@ with tab1:
|
|
217 |
if view_var2 == 'Advanced':
|
218 |
display_proj = display_proj
|
219 |
elif view_var2 == 'Simple':
|
220 |
-
display_proj = display_proj[['Player', 'Team', 'Position', '
|
221 |
display_proj = display_proj.set_index('Player')
|
222 |
st.session_state.display_proj = display_proj
|
223 |
|
|
|
217 |
if view_var2 == 'Advanced':
|
218 |
display_proj = display_proj
|
219 |
elif view_var2 == 'Simple':
|
220 |
+
display_proj = display_proj[['Player', 'Team', 'Position', 'Median', 'GPP%', 'ValX']]
|
221 |
display_proj = display_proj.set_index('Player')
|
222 |
st.session_state.display_proj = display_proj
|
223 |
|