Skip to content

Commit 4f64ebd

Browse files
committed
ci/eval-stats: sort output table by metric name
1 parent c827611 commit 4f64ebd

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

ci/eval/compare/cmp-stats.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def load_all_metrics(directory: Path) -> dict:
6060
return metrics
6161

6262
def dataframe_to_markdown(df: pd.DataFrame) -> str:
63+
df = df.sort_values(by=df.columns[0], ascending=True)
6364
markdown_lines = []
6465

6566
# Header (get column names and format them)

0 commit comments

Comments
 (0)