pub enum HarveyCollierMethod {
R,
Python,
}Expand description
Method for computing the Harvey-Collier test.
Different statistical packages implement the Harvey-Collier test differently.
R’s lmtest::harvtest uses all recursive residuals, while Python’s
statsmodels.stats.diagnostic.linear_harvey_collier skips the first 3
elements of the standardized recursive residuals.
Variants§
R
R’s lmtest::harvtest (uses all recursive residuals)
Python
Python’s statsmodels (skips first 3 recursive residuals)
Trait Implementations§
Source§impl Clone for HarveyCollierMethod
impl Clone for HarveyCollierMethod
Source§fn clone(&self) -> HarveyCollierMethod
fn clone(&self) -> HarveyCollierMethod
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 HarveyCollierMethod
impl Debug for HarveyCollierMethod
Source§impl PartialEq for HarveyCollierMethod
impl PartialEq for HarveyCollierMethod
impl Copy for HarveyCollierMethod
impl StructuralPartialEq for HarveyCollierMethod
Auto Trait Implementations§
impl Freeze for HarveyCollierMethod
impl RefUnwindSafe for HarveyCollierMethod
impl Send for HarveyCollierMethod
impl Sync for HarveyCollierMethod
impl Unpin for HarveyCollierMethod
impl UnwindSafe for HarveyCollierMethod
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