Skip to content

Commit

Permalink
fix case sensitive column names (#2932)
Browse files Browse the repository at this point in the history
  • Loading branch information
rakow authored Nov 14, 2023
1 parent 48949d4 commit ce0528f
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 ce0528f

Please sign in to comment.