Package weka.experiment

Examples of weka.experiment.PairedStats.calculateDerived()


         inst.instance(i).value(classIndex));

      if (!Utils.eq(inst.instance(i + 1).value(attr),
        inst.instance(i).value(attr))) {
  leftSubset.calculateDerived();
  rightSubset.calculateDerived();

  leftCorr = Math.abs(leftSubset.correlation);
  rightCorr = Math.abs(rightSubset.correlation);
  leftVar = (leftSubset.yStats.stdDev * leftSubset.yStats.stdDev);
  leftVar = Math.abs(leftVar);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.