Interface MultivariateResampler
-
- All Superinterfaces:
Seedable
- All Known Implementing Classes:
GroupResampler
public interface MultivariateResampler extends Seedable
This is the interface of a multivariate re-sampler method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Matrix
newResample()
Gets a resample from the original sample.
-
-
-
Method Detail
-
newResample
Matrix newResample()
Gets a resample from the original sample. It is very important this method is thread-safe so resampling can be run in parallel.- Returns:
- a resample, e.g., a bootstrap sample
-
-