Struct nanostat::Difference[][src]

pub struct Difference {
    pub effect: f64,
    pub effect_size: f64,
    pub critical_value: f64,
    pub p_value: f64,
    pub alpha: f64,
    pub beta: f64,
}
Expand description

The statistical difference between two Summary instances.

Fields

effect: f64

The absolute difference between the samples’ means.

effect_size: f64

The difference in means between the two samples, normalized for variance. Technically, this is Cohen’s d.

critical_value: f64

The minimum allowed effect at the given confidence level.

p_value: f64

The p-value for the test: the probability that accepting the results of this test will be a Type 1 error, in which the null hypothesis (i.e. there is no difference between the means of the two samples) will be rejected when it is in fact true.

alpha: f64

The significance level of the test. It is the maximum allowed value of the p-value.

beta: f64

The probability of a Type 2 error: the probability that the null hypothesis will be retained despite it not being true.

Implementations

Whether or not the difference is statistically significant.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more

Checks if self is actually part of its subset T (and can be converted to it).

Use with care! Same as self.to_subset but without any property checks. Always succeeds.

The inclusion map: converts self to the equivalent element of its superset.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.