public class PearsonCorrelation extends Object implements Correlation, Logging
Definition of Pearson correlation can be found at http://en.wikipedia.org/wiki/Pearson_product-moment_correlation_coefficient
| Constructor and Description |
|---|
PearsonCorrelation() |
| Modifier and Type | Method and Description |
|---|---|
static double |
computeCorrelation(RDD<Object> x,
RDD<Object> y)
Compute the Pearson correlation for two datasets.
|
static Matrix |
computeCorrelationMatrix(RDD<Vector> X)
Compute the Pearson correlation matrix S, for the input matrix, where S(i, j) is the
correlation between column i and j.
|
static Matrix |
computeCorrelationMatrixFromCovariance(Matrix covarianceMatrix)
Compute the Pearson correlation matrix from the covariance matrix.
|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitcomputeCorrelation, computeCorrelationMatrix, computeCorrelationWithMatrixImplinitializeIfNecessary, initializeLogging, isTraceEnabled, log_, log, logDebug, logDebug, logError, logError, logInfo, logInfo, logName, logTrace, logTrace, logWarning, logWarningpublic static double computeCorrelation(RDD<Object> x, RDD<Object> y)
public static Matrix computeCorrelationMatrix(RDD<Vector> X)