| 
            
              Bootstrap Constructor (Int32, Int32, Int32)
             | 
          
        
         
              Creates a new Bootstrap estimation algorithm.
            
 
    Namespace: 
   Accord.MachineLearning
    Assembly:
   Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntaxpublic Bootstrap(
	int size,
	int subsamples,
	int subsampleSize
)
Public Sub New ( 
	size As Integer,
	subsamples As Integer,
	subsampleSize As Integer
)
 Request Example
		View SourceParameters
- size
 - Type: SystemInt32
The size of the complete dataset. - subsamples
 - Type: SystemInt32
The number B of bootstrap resamplings to perform. - subsampleSize
 - Type: SystemInt32
The number of samples in each subsample. Default
              is to use the total number of samples in the population dataset. 
See Also