Skip to content

Commit

Permalink
Merge branch 'feat/prebooking' into feat/canceling
Browse files Browse the repository at this point in the history
  • Loading branch information
sebhoerl committed Nov 16, 2023
2 parents d37fdd7 + ce91c3e commit 9e8e15d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public void configure(Header header, Layout layout) {
viz.title = "Score";
viz.dataset = data.output("*.scorestats.csv");
viz.description = "per Iteration";
viz.x = "ITERATION";
viz.x = "iteration";
viz.columns = List.of("avg_executed", "avg_worst", "avg_best");
viz.xAxisName = "Iteration";
viz.yAxisName = "Score";
Expand All @@ -88,7 +88,7 @@ public void configure(Header header, Layout layout) {
viz.title = "Mode Share Progression";
viz.description = "per Iteration";
viz.dataset = data.output("*.modestats.csv");
viz.x = "Iteration";
viz.x = "iteration";
viz.xAxisName = "Iteration";
viz.yAxisName = "Share";
viz.width = 2d;
Expand Down

0 comments on commit 9e8e15d

Please sign in to comment.