pub enum RainbowMethod {
R,
Python,
Both,
}Expand description
Rainbow test implementation method.
Specifies which algorithm to use for computing the Rainbow test. Different statistical packages use slightly different algorithms for selecting the central subset of observations.
§Variants
R- R’s lmtest::raintest (Type 7 quantile with interpolation)Python- Python’s statsmodels (direct formula using ceiling)Both- Compute both R and Python results
Variants§
R
R’s lmtest::raintest (Type 7 quantile)
Python
Python’s statsmodels (direct formula)
Both
Both R and Python results
Trait Implementations§
Source§impl Clone for RainbowMethod
impl Clone for RainbowMethod
Source§fn clone(&self) -> RainbowMethod
fn clone(&self) -> RainbowMethod
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 RainbowMethod
impl Debug for RainbowMethod
Source§impl PartialEq for RainbowMethod
impl PartialEq for RainbowMethod
impl Copy for RainbowMethod
impl StructuralPartialEq for RainbowMethod
Auto Trait Implementations§
impl Freeze for RainbowMethod
impl RefUnwindSafe for RainbowMethod
impl Send for RainbowMethod
impl Sync for RainbowMethod
impl Unpin for RainbowMethod
impl UnwindSafe for RainbowMethod
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