Skip to content

Commit 367678f

Browse files
committed
feat(graphics): add score multiplier to score plot legend
1 parent d85bc0b commit 367678f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

codesectools/sasts/all/graphics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ def plot_top_scores(self) -> Figure:
201201
X_files,
202202
key_values,
203203
bottom=bottoms,
204-
label=key.replace("_", " ").title(),
204+
label=f"{key.replace('_', ' ').title()} (x{2**i})",
205205
color=score_colors(i),
206206
)
207207
bottoms = [b + v for b, v in zip(bottoms, key_values, strict=False)]

0 commit comments

Comments
 (0)