Click or drag to resize

PLS2CrossValidationDataSetData(DoubleMatrix, DoubleMatrix, Subset, Boolean) Method

Sets the cross validation data according the given PLS data and testing subset. The training subset will be the data not contained in the testing subset.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void SetData(
	DoubleMatrix predictorData,
	DoubleMatrix responseData,
	Subset testingSubset,
	bool scaleData
)

Parameters

predictorData  DoubleMatrix
Predictor variable values.
responseData  DoubleMatrix
Response variable values.
testingSubset  Subset
Subset specifying the indices of the data rows to used as the testing data. The remaining rows will be used as the training data.
scaleData  Boolean
If true variables are scaled to have unit variance (divided by their standard deviation).
See Also