We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 328fcaf commit fba4fd6Copy full SHA for fba4fd6
sklbench/report/implementation.py
@@ -353,7 +353,7 @@ def generate_report(args: argparse.Namespace):
353
summary_df = summary_df[summary_df.columns.sortlevel(level=0, ascending=False)[0]]
354
logger.info(f"{custom_format('Report summary', bcolor='HEADER')}\n{summary_df}")
355
if summary_df.size > 0:
356
- summary_ws = wb.create_sheet("Summary")
+ summary_ws = wb.create_sheet(title="Summary", index=0)
357
write_df_to_sheet(summary_df, summary_ws)
358
apply_rules_for_sheet(summary_ws, args.perf_color_scale, args.quality_color_scale)
359
# write environment info
0 commit comments