StatisticalEstimate

Trait StatisticalEstimate 

Source
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§

Source

fn alpha(&self) -> Alpha64

Get the alpha level associated with this statistical run

Source

fn estimate(&self) -> E

Get the estimated value of the statistic

Source

fn confidence_interval(&self) -> CI

Get the confidence interval of the estimate

Implementors§