pub enum WhiteMethod {
R,
Python,
Both,
}Expand description
White test implementation method.
Specifies which algorithm to use for computing the White test. The R and Python implementations differ in their auxiliary regression specification.
§Variants
R- R’s skedastic::white (original variables and squares only)Python- Python’s statsmodels (squares and cross-products)Both- Compute both R and Python results
Variants§
R
R’s skedastic::white (original variables only)
Python
Python’s statsmodels (squares + interactions)
Both
Both R and Python results
Trait Implementations§
Source§impl Clone for WhiteMethod
impl Clone for WhiteMethod
Source§fn clone(&self) -> WhiteMethod
fn clone(&self) -> WhiteMethod
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 WhiteMethod
impl Debug for WhiteMethod
Source§impl PartialEq for WhiteMethod
impl PartialEq for WhiteMethod
impl Copy for WhiteMethod
impl StructuralPartialEq for WhiteMethod
Auto Trait Implementations§
impl Freeze for WhiteMethod
impl RefUnwindSafe for WhiteMethod
impl Send for WhiteMethod
impl Sync for WhiteMethod
impl Unpin for WhiteMethod
impl UnwindSafe for WhiteMethod
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