pub struct TukeyHsdResult {
pub pairs: Vec<(usize, usize)>,
pub meandiffs: Vec<f64>,
pub std_pairs: Vec<f64>,
pub confint: Vec<(f64, f64)>,
pub pvalues: Vec<f64>,
pub reject: Vec<bool>,
pub q_crit: f64,
pub df_total: f64,
pub variance: f64,
}Expand description
Result of a pairwise Tukey HSD comparison.
Fields§
§pairs: Vec<(usize, usize)>(i, j) group-index pairs (upper triangle, i < j).
meandiffs: Vec<f64>Mean difference mean_j − mean_i for each pair.
std_pairs: Vec<f64>Standard error of each pairwise difference (studentized-range scaling).
confint: Vec<(f64, f64)>Lower and upper confidence bounds for each mean difference.
pvalues: Vec<f64>Studentized-range adjusted p-value for each pair.
reject: Vec<bool>Reject the null of equal means at level alpha.
q_crit: f64Critical value of the studentized range at level alpha.
df_total: f64Total residual degrees of freedom N − k.
variance: f64Pooled within-group variance (mean squared error).
Trait Implementations§
Source§impl Clone for TukeyHsdResult
impl Clone for TukeyHsdResult
Source§fn clone(&self) -> TukeyHsdResult
fn clone(&self) -> TukeyHsdResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for TukeyHsdResult
impl RefUnwindSafe for TukeyHsdResult
impl Send for TukeyHsdResult
impl Sync for TukeyHsdResult
impl Unpin for TukeyHsdResult
impl UnsafeUnpin for TukeyHsdResult
impl UnwindSafe for TukeyHsdResult
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more