|
BootstrapSamplings Method
|
Draws the bootstrap samples from the population.
Namespace:
Accord.MachineLearning
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public static int[][] Samplings(
int size,
int resamplings,
int subsampleSize
)
Public Shared Function Samplings (
size As Integer,
resamplings As Integer,
subsampleSize As Integer
) As Integer()()
Request Example
View SourceParameters
- size
- Type: SystemInt32
The size of the samples to be drawn. - resamplings
- Type: SystemInt32
The number of samples to drawn. - subsampleSize
- Type: SystemInt32
The size of the samples to be drawn.
Return Value
Type:
Int32The indices of the samples in the original set.
See Also