Skip to content

Commit

Permalink
Fixed some GUI texts
Browse files Browse the repository at this point in the history
  • Loading branch information
h0bb3 committed Feb 4, 2020
1 parent 653b52e commit ac96d59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions v3xt/src/main/java/experimenting/ExperimentsView.java
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ public void doView(ImGuiWrapper a_imgui) {
private void doBoxPlots(ImGuiWrapper a_iw) {

a_iw.imgui().beginColumns("boxplots", 3, 0);
a_iw.text("Performance");
a_iw.text("F1-score");
m_performanceBP.doPlot(a_iw);

a_iw.imgui().nextColumn();
Expand Down Expand Up @@ -347,15 +347,15 @@ private void doScatterPlots(ImGuiWrapper a_imgui) {

ArrayList<ScatterPlot.Data> selectedData = new ArrayList<>();
a_imgui.imgui().beginColumns("scatterplots", 3, 0);
a_imgui.text("Auto Performance vs Initial Set Size");
a_imgui.text("F1-Score");
m_performanceVsInitialMapped.doPlot(a_imgui, selectedData);

a_imgui.imgui().nextColumn();
a_imgui.text("Auto Precision vs Initial Set Size");
a_imgui.text("Precision");
m_precisionVsInitialMapped.doPlot(a_imgui, selectedData);

a_imgui.imgui().nextColumn();
a_imgui.text("Auto Recall vs Initial Set Size");
a_imgui.text("Recall");
m_recallVsInitialMapped.doPlot(a_imgui, selectedData);
a_imgui.imgui().endColumns();

Expand Down

0 comments on commit ac96d59

Please sign in to comment.