resamples property

List<List<T>> resamples
latefinal

The resamples of the data.

Implementation

late final List<List<T>> resamples = IntegerRange(samples.length)
    .map((index) => _JackknifeResampling<T>(samples, index))
    .toList();