Click or drag to resize

PLS2CrossValidationWithJackknifeCoefficients Property

Gets the coefficients for the full model.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public DoubleMatrix Coefficients { get; }

Property Value

DoubleMatrix
Remarks
The coeffient matrix, B, can be used for prediction as follows:

Let yhat(z) be the predicted value for the independet variable value z, xbar the mean of the PredictorMatrix variables and ybar the mean of ResponseVector variables. Then

C#
yhat(z) = ybar + (z - xbar)B

See Also