James McCool commited on
Commit
983f4d2
·
1 Parent(s): 6af8f06

Swap x and y axes in game rotation timeline plot

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -695,7 +695,7 @@ with tab5:
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
 
698
- fig = px.timeline(check_rotation, x_start="Start", x_end="Finish", y="delta", range_x=[0,check_rotation["Finish"].max()], text='Task')
699
  # fig.update_yaxes(autorange="reversed")
700
 
701
  # fig.layout.xaxis.type = 'linear'
 
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
 
698
+ fig = px.timeline(check_rotation, x_start="Start", x_end="Finish", y="Task", range_x=[0,check_rotation["Finish"].max()], text='delta')
699
  # fig.update_yaxes(autorange="reversed")
700
 
701
  # fig.layout.xaxis.type = 'linear'