Package org.jamesii.resultreport.dataview

Examples of org.jamesii.resultreport.dataview.ScatterPlotDataView


        new ResultReport("Test Report 2", "This is a simple test report.");
    ResultReportSection testSection =
        new ResultReportSection("Test Section", "This is a test section.");
    tutorialReport.addSection(testSection);

    testSection.addDataView(new ScatterPlotDataView(new Double[][] {
        testData[0], testData[3] }, "The scatter plot data view.",
        "This is a title for the scatter plot", new String[] { "Bogus X Label",
            "Bogus Y Label" }));

    testSection.addDataView(new BoxPlotDataView(testData,
View Full Code Here


    }
    return (occurrences == null) ? 0 : occurrences.size();
  }

  private void addScatterPlot(ResultReportSection testChapter) {
    testChapter.addDataView(new ScatterPlotDataView(new Double[][] {
        testData[0], testData[3] }, "The \\texttt{ScatterPlotDataView}.",
        "This is the title for the sample data", new String[] {
            "Bogus X Label", "Bogus Y Label" }));
  }
View Full Code Here

          new Double[2][ilsObserver.getMinList().size()];
      for (int i = 0; i < ilsObserver.getMinList().size(); i++) {
        plottableMinData[0][i] = Double.valueOf(i);
        plottableMinData[1][i] = ilsObserver.getMinList().get(i).getB();
      }
      section.addDataView(new ScatterPlotDataView(plottableMinData, "",
          "Minimum performance data", new String[] { "Calculated Minimum",
              "Performance" }));
    }
  }
View Full Code Here

TOP

Related Classes of org.jamesii.resultreport.dataview.ScatterPlotDataView

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.