create
fun create(sampleSize: Int, samplerMap: Map<String, SampleIfc>, estimator: BSEstimatorIfc = BSEstimatorIfc.Average(), name: String? = null): MultiBootstrap
Return
an instance of MultiBootstrap based on data generated from each generate
Parameters
name
the name of the instance
sample Size
the sample size, all samplers have the same amount sampled
sampler Map
something to generate the original generate of the provided size
fun create(samplerMap: Map<String, Map.Entry<Int, SampleIfc>>, estimator: BSEstimatorIfc = BSEstimatorIfc.Average(), name: String? = null): MultiBootstrap
Return
an instance of MultiBootstrap based on data generated from each generate
Parameters
name
the name of the instance
sampler Map
the String of the map is the named identifier for the bootstrap, the entry of the map is a pair (Integer, SamplerIfc) which represents the number to generate and the sampler