idolezal commited on
Commit
fd254f9
ยท
1 Parent(s): c5d0843

Heatmap: Correction of the abbreviation of Duel Win Score from DS to DWS

Browse files
Files changed (1) hide show
  1. 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"), ("DS", "@scores")] # Updated tooltip
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