BivariateSamplePearsonRTest Method |
Namespace: Meta.Numerics.Statistics
Exception | Condition |
---|---|
InsufficientDataException | Count is less than three. |
This test measures the strength of the linear correlation between two variables. The test statistic r is simply the covariance of the two variables, scaled by their respective standard deviations so as to obtain a number between -1 (perfect linear anti-correlation) and +1 (perfect linear correlation).
The Pearson test cannot reliably detect or rule out non-linear associations. For example, variables with a perfect quadratic association may have only a weak linear correlation. If you wish to test for associations that may not be linear, consider using the Spearman or Kendall tests instead.
The Pearson correlation test requires O(N) operations.
The Pearson test requires at least three bivariate values.