Spaces:
Runtime error
Runtime error
James McCool
commited on
Commit
·
aeba66d
1
Parent(s):
8e763a8
Modify game rotation timeline by appending Start column to Task column
Browse files
app.py
CHANGED
@@ -693,6 +693,7 @@ with tab5:
|
|
693 |
check_rotation = team_backlog.sort_values(by=['GAME_DATE', 'Finish'], ascending=[False, True])
|
694 |
check_rotation['Start'] = check_rotation['Start'].astype(float)
|
695 |
check_rotation['Finish'] = check_rotation['Finish'].astype(float)
|
|
|
696 |
st.write(check_rotation)
|
697 |
game_rot_stats = check_rotation.reindex(game_rot_cols,axis="columns")
|
698 |
game_rot_stats = game_rot_stats.drop_duplicates(subset='backlog_lookup')
|
|
|
693 |
check_rotation = team_backlog.sort_values(by=['GAME_DATE', 'Finish'], ascending=[False, True])
|
694 |
check_rotation['Start'] = check_rotation['Start'].astype(float)
|
695 |
check_rotation['Finish'] = check_rotation['Finish'].astype(float)
|
696 |
+
check_rotation['Task'] = check_rotation['Task'] + ' ' + check_rotation['Start']
|
697 |
st.write(check_rotation)
|
698 |
game_rot_stats = check_rotation.reindex(game_rot_cols,axis="columns")
|
699 |
game_rot_stats = game_rot_stats.drop_duplicates(subset='backlog_lookup')
|