pub struct AndersonDarlingResult {
pub statistic: f64,
pub statistic_star: f64,
pub p_value: f64,
}Expand description
Result of the Anderson-Darling normality test.
Fields§
§statistic: f64The A² test statistic (raw, before sample-size correction).
statistic_star: f64The modified statistic A*² = A² × (1 + 0.75/n + 2.25/n²).
p_value: f64The p-value. Small values reject the null hypothesis of normality.
Trait Implementations§
Source§impl Clone for AndersonDarlingResult
impl Clone for AndersonDarlingResult
Source§fn clone(&self) -> AndersonDarlingResult
fn clone(&self) -> AndersonDarlingResult
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 AndersonDarlingResult
impl Debug for AndersonDarlingResult
impl Copy for AndersonDarlingResult
Auto Trait Implementations§
impl Freeze for AndersonDarlingResult
impl RefUnwindSafe for AndersonDarlingResult
impl Send for AndersonDarlingResult
impl Sync for AndersonDarlingResult
impl Unpin for AndersonDarlingResult
impl UnsafeUnpin for AndersonDarlingResult
impl UnwindSafe for AndersonDarlingResult
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