James McCool
commited on
Commit
·
920b00d
1
Parent(s):
2650424
Update excluded_cols list in app.py to include 'SE Score' for improved data handling in portfolio management.
Browse files
app.py
CHANGED
|
@@ -1281,7 +1281,7 @@ if selected_tab == 'Manage Portfolio':
|
|
| 1281 |
if submitted:
|
| 1282 |
del st.session_state['working_frame']
|
| 1283 |
|
| 1284 |
-
excluded_cols = ['salary', 'median', 'Own', 'Finish_percentile', 'Dupes', 'Stack', 'Size', 'Win%', 'Lineup Edge', 'Lineup Edge_Raw', 'Weighted Own', 'Geomean', 'Diversity']
|
| 1285 |
|
| 1286 |
|
| 1287 |
if 'working_frame' not in st.session_state:
|
|
|
|
| 1281 |
if submitted:
|
| 1282 |
del st.session_state['working_frame']
|
| 1283 |
|
| 1284 |
+
excluded_cols = ['salary', 'median', 'Own', 'Finish_percentile', 'Dupes', 'Stack', 'Size', 'Win%', 'Lineup Edge', 'Lineup Edge_Raw', 'Weighted Own', 'Geomean', 'Diversity', 'SE Score']
|
| 1285 |
|
| 1286 |
|
| 1287 |
if 'working_frame' not in st.session_state:
|