pub trait StatisticalEstimate<E, CI> {
// Required methods
fn alpha(&self) -> Alpha64;
fn estimate(&self) -> E;
fn confidence_interval(&self) -> CI;
}Expand description
The general form of a statistic that generates an estimate
Required Methods§
Sourcefn confidence_interval(&self) -> CI
fn confidence_interval(&self) -> CI
Get the confidence interval of the estimate