Spaces:
Runtime error
Runtime error
James McCool
commited on
Commit
·
d36c337
1
Parent(s):
49c24fe
Added debug print of rotation data in Streamlit app
Browse files
app.py
CHANGED
@@ -691,6 +691,7 @@ with tab5:
|
|
691 |
display = st.container()
|
692 |
stats_disp = st.container()
|
693 |
check_rotation = team_backlog.sort_values(by='GAME_DATE', ascending=False)
|
|
|
694 |
game_rot_stats = check_rotation.reindex(game_rot_cols,axis="columns")
|
695 |
game_rot_stats = game_rot_stats.drop_duplicates(subset='backlog_lookup')
|
696 |
|
|
|
691 |
display = st.container()
|
692 |
stats_disp = st.container()
|
693 |
check_rotation = team_backlog.sort_values(by='GAME_DATE', ascending=False)
|
694 |
+
st.write(check_rotation)
|
695 |
game_rot_stats = check_rotation.reindex(game_rot_cols,axis="columns")
|
696 |
game_rot_stats = game_rot_stats.drop_duplicates(subset='backlog_lookup')
|
697 |
|