pub struct AdfResult {
pub statistic: f64,
pub n_lags: usize,
pub n_obs: usize,
pub critical_values: [f64; 3],
pub rejected: [bool; 3],
}Expand description
Result of the Augmented Dickey-Fuller (ADF) unit root test.
Fields§
§statistic: f64ADF test statistic (t-ratio for γ̂).
n_lags: usizeNumber of lags used.
n_obs: usizeNumber of observations used in the regression.
critical_values: [f64; 3]Critical values at 1%, 5%, 10% significance levels.
rejected: [bool; 3]Whether the null hypothesis (unit root) is rejected at each level.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AdfResult
impl RefUnwindSafe for AdfResult
impl Send for AdfResult
impl Sync for AdfResult
impl Unpin for AdfResult
impl UnsafeUnpin for AdfResult
impl UnwindSafe for AdfResult
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