Spaces:
Runtime error
Runtime error
James McCool
commited on
Commit
·
696e3de
1
Parent(s):
ea73cf1
Update game rotation timeline plot to use minutes column for text parameter
Browse files
app.py
CHANGED
@@ -702,7 +702,7 @@ with tab5:
|
|
702 |
text_vals = check_rotation['minutes'].tolist()
|
703 |
y_vals = check_rotation['Task'].tolist()
|
704 |
|
705 |
-
fig = px.timeline(x_start=x_start_vals, x_end=x_end_vals, y=y_vals, range_x=[0,check_rotation["Finish"].max()], text=
|
706 |
|
707 |
fig.layout.xaxis.type = 'linear'
|
708 |
# fig.update_yaxes(autorange="reversed")
|
|
|
702 |
text_vals = check_rotation['minutes'].tolist()
|
703 |
y_vals = check_rotation['Task'].tolist()
|
704 |
|
705 |
+
fig = px.timeline(x_start=x_start_vals, x_end=x_end_vals, y=y_vals, range_x=[0,check_rotation["Finish"].max()], text=text_vals)
|
706 |
|
707 |
fig.layout.xaxis.type = 'linear'
|
708 |
# fig.update_yaxes(autorange="reversed")
|