Examples of PairedData


Examples of jsc.datastructures.PairedData

        pairedDataX[pairingIndex] = sm1.getID(uids.get(i), uids.get(j));
        pairedDataY[pairingIndex] = sm2.getID(uids.get(i), uids.get(j));
        pairingIndex++;
      }
    }
    PairedData pairedData = new PairedData(pairedDataX,pairedDataY);
    //System.out.println("now running sc");
    //SpearmanCorrelation sc = new SpearmanCorrelation(pairedData);
    //return sc.getR();
    return LinearCorrelation.correlationCoeff(pairedData);
   
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.