pub struct AutocorrResult {
pub lags: Vec<LagCorrelation>,
pub max_abs_correlation: f64,
pub max_abs_lag: usize,
pub threshold: f64,
pub violations: usize,
}Expand description
Autocorrelation profile across multiple lags.
Fields§
§lags: Vec<LagCorrelation>§max_abs_correlation: f64§max_abs_lag: usize§threshold: f6495% significance threshold (2/sqrt(n)).
violations: usizeNumber of lags exceeding the threshold.
Trait Implementations§
Source§impl Clone for AutocorrResult
impl Clone for AutocorrResult
Source§fn clone(&self) -> AutocorrResult
fn clone(&self) -> AutocorrResult
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 AutocorrResult
impl Debug for AutocorrResult
Auto Trait Implementations§
impl Freeze for AutocorrResult
impl RefUnwindSafe for AutocorrResult
impl Send for AutocorrResult
impl Sync for AutocorrResult
impl Unpin for AutocorrResult
impl UnsafeUnpin for AutocorrResult
impl UnwindSafe for AutocorrResult
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