James McCool commited on
Commit
2ac2812
·
1 Parent(s): 642608b

Commented out x-axis data assignment in rotation timeline visualization

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -699,7 +699,7 @@ with tab5:
699
  fig.update_yaxes(autorange="reversed")
700
 
701
  fig.layout.xaxis.type = 'linear'
702
- fig.data[0].x = check_rotation.delta.tolist()
703
  # Create a color map for each unique player
704
  player_colors = px.colors.qualitative.Plotly[:len(check_rotation['PLAYER_NAME'].unique())]
705
  color_map = dict(zip(check_rotation['PLAYER_NAME'].unique(), player_colors))
 
699
  fig.update_yaxes(autorange="reversed")
700
 
701
  fig.layout.xaxis.type = 'linear'
702
+ # fig.data[0].x = check_rotation.delta.tolist()
703
  # Create a color map for each unique player
704
  player_colors = px.colors.qualitative.Plotly[:len(check_rotation['PLAYER_NAME'].unique())]
705
  color_map = dict(zip(check_rotation['PLAYER_NAME'].unique(), player_colors))