WebCab Probability and Statistics for .NET v3.3 Demo

Correlation.Significance Method 

Calculates the significance test of a Correlation coefficient (either Pearson's or Spearman's) for a set of pairs of points: (xValues[0], yValues[0]), (xValues[1], yValues[1]),.

public double Significance(
   double[] xValues,
   double[] yValues,
   double correlationCoefficient
);

Parameters

xValues
The values of the first elements within the pairs.
yValues
The values of the second elements within the pairs.
correlationCoefficient
Either evaluation of Pearson's correlation coefficient evaluated using PearsonCorrelationCoefficient, or Spearson's rank correlation coefficient evaluated using SpearmanRankTest, for the data set considered.

Return Value

the value of the significance test for the given correlation coefficient.

Remarks

.. , (xValues[n], yValues[n]).

See Also

Correlation Class | WebCab.Libraries.Statistics.Correlation Namespace