Package org.jamesii.resultreport.dataview

Examples of org.jamesii.resultreport.dataview.StatisticalTestDataView


   * @param element
   *          the element
   */
  private void processStatisticalTest(RTexReportElement element)
      throws IOException {
    StatisticalTestDataView statDataView =
        (StatisticalTestDataView) element.getDataView();
    Pair<Double[], Double[]> dataSet = statDataView.getData();
    writeVector(element.getID(), dataSet.getFirstValue(),
        statDataView.getFirstSetName());
    writeVector(element.getID(), dataSet.getSecondValue(),
        statDataView.getSecondSetName());
  }
View Full Code Here


  }

  private void addStatisticalTests(ResultReportSection testChapter) {
    Double[] bogusA = new Double[] { 1.1, 1.05, 1.06, 0.9, 1.0 };
    Double[] bogusB = new Double[] { 0.93, 1.02, 1.03, 1.14 };
    testChapter.addDataView(new StatisticalTestDataView(new Pair<>(bogusA,
        bogusB), "Non-statistical test of a statistical test :)", "bogusVarA",
        "bogusVarB", true, true, StatisticalTestDefinition.KOLMOGOROV_SMIRNOV));
  }
View Full Code Here

TOP

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

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.