plot: fix truncated stage label "heale" -> "healed" (k[:5] -> k)

Co-Authored-By: Claudypoo <288921227+claudypoo@users.noreply.github.com>
This commit is contained in:
wassname
2026-06-10 11:05:35 +08:00
parent 24ab244877
commit 0c2be96eeb
2 changed files with 1 additions and 1 deletions
Binary file not shown.

Before

Width:  |  Height:  |  Size: 166 KiB

After

Width:  |  Height:  |  Size: 167 KiB

+1 -1
View File
@@ -83,7 +83,7 @@ def write_trajectory(run_dir: Path, stages: list[dict], primary_key: str = "care
kind = [s["stage"] for s in stages]
xi = list(range(len(stages)))
xlab = ["base" if k == "base" else f"r{s['round']}·{k[:5]}" for s, k in zip(stages, kind)]
xlab = ["base" if k == "base" else f"r{s['round']}·{k}" for s, k in zip(stages, kind)]
fig = make_subplots(
rows=2, cols=2, column_widths=[0.52, 0.48], row_heights=[0.5, 0.5],