pub struct AdNormalityResult {
pub statistic: f64,
pub statistic_modified: f64,
pub p_value: f64,
}Expand description
Result of the Anderson-Darling normality test (Stephens 1974 variant).
This variant uses the statistic_modified field name and accepts n ≥ 3,
making it suitable for small-sample normality checking before control
charts and Box-Cox capability analysis.
Fields§
§statistic: f64The A² test statistic (raw).
statistic_modified: f64The modified statistic A²* = A² · (1 + 0.75/n + 2.25/n²).
p_value: f64Approximate p-value from Stephens (1974) piecewise approximation.
Trait Implementations§
Source§impl Clone for AdNormalityResult
impl Clone for AdNormalityResult
Source§fn clone(&self) -> AdNormalityResult
fn clone(&self) -> AdNormalityResult
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 AdNormalityResult
impl Debug for AdNormalityResult
impl Copy for AdNormalityResult
Auto Trait Implementations§
impl Freeze for AdNormalityResult
impl RefUnwindSafe for AdNormalityResult
impl Send for AdNormalityResult
impl Sync for AdNormalityResult
impl Unpin for AdNormalityResult
impl UnsafeUnpin for AdNormalityResult
impl UnwindSafe for AdNormalityResult
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