Click or drag to resize

KFoldsSubsetsGetTestingSubsets(DataFrame, DataFrame) Method

Generates the k-fold subsets to be used for cross validation.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public Subset[] GetTestingSubsets(
	DataFrame independentData,
	DataFrame dependentData
)

Parameters

independentData  DataFrame
DataFrame of independent data.
dependentData  DataFrame
DataFrame of dependent data.

Return Value

Subset
Array of subsets that partition the set of row indices of the input matrices.

Implements

ICrossValidationSubsetsGetTestingSubsets(DataFrame, DataFrame)
Remarks
Independent and dependent DataFrames should have the same number of rows (each row represents a sample value for the variables).
See Also