standardError property

double standardError
latefinal

The standard error.

Implementation

late final double standardError = sqrt((samples.length - 1) *
    _resampleMeasures
        .map((value) => value - _meanResampleMeasure)
        .map((value) => value * value)
        .arithmeticMean());