Spaces:
Sleeping
Sleeping
Heatmap: Correction of the abbreviation of Duel Win Score from DS to DWS
Browse files- analyze_winscore.py +1 -1
analyze_winscore.py
CHANGED
@@ -320,7 +320,7 @@ def create_heatmap(data_matrix, original_scores,
|
|
320 |
|
321 |
# Add HoverTool for interactivity
|
322 |
hover = HoverTool()
|
323 |
-
hover.tooltips = [(x_axis_label, "@x"), (y_axis_label, "@y"), ("
|
324 |
p.add_tools(hover)
|
325 |
|
326 |
# Add labels with dynamic text color
|
|
|
320 |
|
321 |
# Add HoverTool for interactivity
|
322 |
hover = HoverTool()
|
323 |
+
hover.tooltips = [(x_axis_label, "@x"), (y_axis_label, "@y"), ("DWS", "@scores")] # Updated tooltip
|
324 |
p.add_tools(hover)
|
325 |
|
326 |
# Add labels with dynamic text color
|