pub struct FishersExactPvalues {
    pub two_tail_pvalue: f64,
    pub less_pvalue: f64,
    pub greater_pvalue: f64,
}
Expand description

FishersExactPvalues holds the pvalues calculated by the fishers_exact function.

Fields

two_tail_pvalue: f64

pvalue for the two-tailed test. Use this when there is no prior alternative.

less_pvalue: f64

pvalue for the “left” or “lesser” tail. Use this when the alternative to independence is that there is negative association between the variables. That is, the observations tend to lie in lower left and upper right.

greater_pvalue: f64

Use this when the alternative to independence is that there is positive association between the variables. That is, the observations tend to lie in upper left and lower right.

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

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.
Creates owned data from borrowed data, usually by cloning. Read more
Uses borrowed data to replace owned data, usually by cloning. Read more
Converts the given value to a String. 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.