James McCool
commited on
Commit
·
a20af0f
1
Parent(s):
54ac15b
Add table display for working dataframe in app.py to enhance user visibility
Browse files- Reintroduced the display of the working dataframe, allowing users to view the current state of data directly within the application.
- This update aims to improve accessibility to essential contest information for users.
app.py
CHANGED
@@ -391,6 +391,7 @@ with tab2:
|
|
391 |
working_df = working_df.drop(['sorted', 'index'], axis=1)
|
392 |
|
393 |
# Store results
|
|
|
394 |
st.session_state['field_player_frame'] = create_player_exposures(working_df, st.session_state['player_columns'])
|
395 |
st.session_state['field_stack_frame'] = create_stack_exposures(working_df)
|
396 |
st.session_state['display_contest_info'] = working_df.copy()
|
|
|
391 |
working_df = working_df.drop(['sorted', 'index'], axis=1)
|
392 |
|
393 |
# Store results
|
394 |
+
st.table(working_df)
|
395 |
st.session_state['field_player_frame'] = create_player_exposures(working_df, st.session_state['player_columns'])
|
396 |
st.session_state['field_stack_frame'] = create_stack_exposures(working_df)
|
397 |
st.session_state['display_contest_info'] = working_df.copy()
|