pub struct PacfResult {
pub pacf: Vec<f64>,
pub confidence_threshold: f64,
}Expand description
Result of partial autocorrelation analysis.
Fields§
§pacf: Vec<f64>Partial autocorrelation values for lags 1, …, max_lag.
confidence_threshold: f6495% confidence threshold = 1.96 / √n.
Trait Implementations§
Source§impl Clone for PacfResult
impl Clone for PacfResult
Source§fn clone(&self) -> PacfResult
fn clone(&self) -> PacfResult
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 moreAuto Trait Implementations§
impl Freeze for PacfResult
impl RefUnwindSafe for PacfResult
impl Send for PacfResult
impl Sync for PacfResult
impl Unpin for PacfResult
impl UnsafeUnpin for PacfResult
impl UnwindSafe for PacfResult
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