Java org.apache.commons.math3.stat.correlation SpearmansCorrelation fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.stat.correlation SpearmansCorrelation fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.stat.correlation SpearmansCorrelation.

The text is from its open source code.

Constructor

SpearmansCorrelation()
Create a SpearmansCorrelation without data.
SpearmansCorrelation(final RankingAlgorithm rankingAlgorithm)
Create a SpearmansCorrelation with the given ranking algorithm.
SpearmansCorrelation(final RealMatrix dataMatrix)
Create a SpearmansCorrelation from the given data matrix.

Method

doublecorrelation(final double[] xArray, final double[] yArray)
Computes the Spearman's rank correlation coefficient between the two arrays.
RealMatrixgetCorrelationMatrix()
Calculate the Spearman Rank Correlation Matrix.
PearsonsCorrelationgetRankCorrelation()
Returns a PearsonsCorrelation instance constructed from the ranked input data.