WebCab Probability and Statistics for .NET v3.3 Demo

Correlation.EstimateY Method 

Estimates the value of the Y variable when the X variable is known using the regression line of Y on X, which can be evaluated using LeastSquaresRegressionLineY.

public double EstimateY(
   double[] xValues,
   double[] yValues,
   double estPoint
);

Parameters

xValues
The values of the first elements within the pairs for which the linear regression line is evaluated.
yValues
The values of the second elements within the pairs for which the linear regression line is evaluated.
estPoint
The values of the X coordinate for which the corresponding Y coordinate in estimated in accordance with the linear regression line.

See Also

Correlation Class | WebCab.Libraries.Statistics.Correlation Namespace