Performs a Pearson correlation test for association.

Namespace: Meta.Numerics.Statistics
Assembly: Meta.Numerics (in Meta.Numerics.dll) Version: 2.1.0.0 (2.1.0.0)

Syntax

            
 C#  Visual Basic  Visual C++  F# 
public TestResult PearsonRTest()
Public Function PearsonRTest As TestResult
public:
TestResult^ PearsonRTest()
member PearsonRTest : unit -> TestResult 

Return Value

The result of the test.

Remarks

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.

Exceptions

See Also