PartialLeastSquaresModel.Press Method

Returns the Predicted REsidual Sum of Squares (PRESS) value for the specified test features and targets.

Definition

Namespace: Extreme.Statistics.Multivariate
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<double> Press(
	Matrix<double> features,
	Matrix<double> targets
)

Parameters

features  Matrix<Double>
A matrix that contains the independent variables.
targets  Matrix<Double>
A matrix that contains the dependent variables.

Return Value

Vector<Double>
A vector containing the PRESS value for each dependent variable.

See Also