pub struct ShapiroWilkResult {
pub w: f64,
pub p_value: f64,
}Expand description
Result of the Shapiro-Wilk normality test.
Fields§
§w: f64The W statistic (0 < W ≤ 1). Values close to 1 suggest normality.
p_value: f64The p-value. Small values reject the null hypothesis of normality.
Trait Implementations§
Source§impl Clone for ShapiroWilkResult
impl Clone for ShapiroWilkResult
Source§fn clone(&self) -> ShapiroWilkResult
fn clone(&self) -> ShapiroWilkResult
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ShapiroWilkResult
impl Debug for ShapiroWilkResult
impl Copy for ShapiroWilkResult
Auto Trait Implementations§
impl Freeze for ShapiroWilkResult
impl RefUnwindSafe for ShapiroWilkResult
impl Send for ShapiroWilkResult
impl Sync for ShapiroWilkResult
impl Unpin for ShapiroWilkResult
impl UnsafeUnpin for ShapiroWilkResult
impl UnwindSafe for ShapiroWilkResult
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