pub struct LjungBox {
pub lag: usize,
pub lb_stat: f64,
pub lb_pvalue: f64,
}Expand description
Per-lag output row of acorr_ljungbox.
Fields§
§lag: usizeThe lag (1-based) this row reports.
lb_stat: f64Ljung–Box cumulative test statistic up to this lag.
lb_pvalue: f64Chi-squared p-value of lb_stat with lag degrees of freedom.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for LjungBox
impl RefUnwindSafe for LjungBox
impl Send for LjungBox
impl Sync for LjungBox
impl Unpin for LjungBox
impl UnsafeUnpin for LjungBox
impl UnwindSafe for LjungBox
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