pub enum AdfModel {
None,
Constant,
ConstantTrend,
}Expand description
Model specification for the ADF test.
Variants§
None
No constant, no trend: Δyₜ = γyₜ₋₁ + Σδᵢ·Δyₜ₋ᵢ + εₜ
Constant
Constant only (default): Δyₜ = α + γyₜ₋₁ + Σδᵢ·Δyₜ₋ᵢ + εₜ
ConstantTrend
Constant + linear trend: Δyₜ = α + βt + γyₜ₋₁ + Σδᵢ·Δyₜ₋ᵢ + εₜ
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AdfModel
impl RefUnwindSafe for AdfModel
impl Send for AdfModel
impl Sync for AdfModel
impl Unpin for AdfModel
impl UnsafeUnpin for AdfModel
impl UnwindSafe for AdfModel
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