Method |
Description |
|
R2 ( array $X, array $Y, boolean $popluation = false ) : number |
R² - coefficient of determination
Convenience wrapper for coefficientOfDetermination |
|
coefficientOfDetermination ( array $X, array $Y, boolean $popluation = false ) : number |
R² - coefficient of determination |
|
covariance ( array $X, array $Y, boolean $population = false ) : number |
Covariance
Convenience method to access population and sample covariance. |
|
describe ( array $X, array $Y, boolean $population = false ) : array |
Descriptive correlation report about two random variables |
|
kendallsTau ( array $X, array $Y ) : number |
τ - Kendall rank correlation coefficient (Kendall's tau) |
|
populationCorrelationCoefficient ( array $X, array $Y ) : number |
Population correlation coefficient
Pearson product-moment correlation coefficient (PPMCC or PCC or Pearson's r) |
|
populationCovariance ( array $X, array $Y ) : number |
Population Covariance
A measure of how much two random variables change together. |
|
r ( array $X, array $Y, boolean $popluation = false ) : number |
r - correlation coefficient
Pearson product-moment correlation coefficient (PPMCC or PCC or Pearson's r) |
|
sampleCorrelationCoefficient ( array $X, array $Y ) : number |
Sample correlation coefficient
Pearson product-moment correlation coefficient (PPMCC or PCC or Pearson's r) |
|
sampleCovariance ( array $X, array $Y ) : number |
Sample covariance
A measure of how much two random variables change together. |
|
spearmansRho ( array $X, array $Y ) : number |
ρ - Spearman's rank correlation coefficient (Spearman's rho) |
|