Examples of PCA


Examples of jmprojection.PCA

      }

      if (result.getVisualizationType() == VisualizationType.PCA) {
        // Scale data and do PCA
        Preprocess.scaleToUnityVariance(rawData);
        PCA pcaProj = new PCA(rawData, numComponents);
        projectionStatus = pcaProj.getProjectionStatus();

        double[][] pcaResult = pcaProj.getState();

        if (status == TaskStatus.CANCELED) {
          return;
        }
View Full Code Here

Examples of jmprojection.PCA

    if (yAxisPC > numComponents)
      numComponents = yAxisPC;

    // Scale data and do PCA
    Preprocess.scaleToUnityVariance(rawData);
    PCA pcaProj = new PCA(rawData, numComponents);
    projectionStatus = pcaProj.getProjectionStatus();

    double[][] result = pcaProj.getState();

    if (status == TaskStatus.CANCELED)
      return;

    component1Coords = result[xAxisPC - 1];
View Full Code Here

Examples of stallone.coordinates.PCA

        };
    }
   
    public IPCA pca(IDataInput datainput)
    {
        return new PCA(datainput);
    }
View Full Code Here

Examples of stallone.coordinates.PCA

        return new PCA(datainput);
    }

    public IPCA pca(IDataSequence X)
    {
        return new PCA(X);
    }
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.