pub struct MannKendallResult {
pub s_statistic: i64,
pub variance: f64,
pub z_statistic: f64,
pub p_value: f64,
pub kendall_tau: f64,
pub sen_slope: f64,
}Expand description
Result of the Mann-Kendall trend test.
Fields§
§s_statistic: i64Mann-Kendall S statistic: Σ sign(xⱼ - xᵢ) for all i < j.
variance: f64Variance of S (with tie correction).
z_statistic: f64Z statistic (with continuity correction).
p_value: f64Two-tailed p-value.
kendall_tau: f64Kendall’s tau: S / [n(n-1)/2]. Range [-1, 1].
sen_slope: f64Sen’s slope estimator: median of (xⱼ - xᵢ)/(j - i) for all i < j.
Trait Implementations§
Source§impl Clone for MannKendallResult
impl Clone for MannKendallResult
Source§fn clone(&self) -> MannKendallResult
fn clone(&self) -> MannKendallResult
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 MannKendallResult
impl Debug for MannKendallResult
impl Copy for MannKendallResult
Auto Trait Implementations§
impl Freeze for MannKendallResult
impl RefUnwindSafe for MannKendallResult
impl Send for MannKendallResult
impl Sync for MannKendallResult
impl Unpin for MannKendallResult
impl UnsafeUnpin for MannKendallResult
impl UnwindSafe for MannKendallResult
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