Returns the Predicted REsidual Sum of Squares (PRESS)
value for the specified test features and targets.
Namespace:
Extreme.Statistics.Multivariate
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<double> Press(
Matrix<double> features,
Matrix<double> targets
)
Public Function Press (
features As Matrix(Of Double),
targets As Matrix(Of Double)
) As Vector(Of Double)
public:
Vector<double>^ Press(
Matrix<double>^ features,
Matrix<double>^ targets
)
member Press :
features : Matrix<float> *
targets : Matrix<float> -> Vector<float>
Parameters
- features
- Type: Extreme.MathematicsMatrixDouble
A matrix that contains
the independent variables. - targets
- Type: Extreme.MathematicsMatrixDouble
A matrix that contains
the dependent variables.
Return Value
Type:
VectorDoubleA vector containing the PRESS value for each
dependent variable.
Reference