pub struct RainbowSingleResult {
pub method: String,
pub statistic: f64,
pub p_value: f64,
pub passed: bool,
}Expand description
Result of the Rainbow test for a single method (R or Python).
Contains the test statistic, p-value, and pass/fail indication for one specific implementation of the Rainbow test.
§Fields
method- Name of the method used (“r” or “python”)statistic- F-statistic valuep_value- P-value for the testpassed- Whether linearity assumption was not rejected
Fields§
§method: String§statistic: f64§p_value: f64§passed: boolTrait Implementations§
Source§impl Clone for RainbowSingleResult
impl Clone for RainbowSingleResult
Source§fn clone(&self) -> RainbowSingleResult
fn clone(&self) -> RainbowSingleResult
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 RainbowSingleResult
impl Debug for RainbowSingleResult
Auto Trait Implementations§
impl Freeze for RainbowSingleResult
impl RefUnwindSafe for RainbowSingleResult
impl Send for RainbowSingleResult
impl Sync for RainbowSingleResult
impl Unpin for RainbowSingleResult
impl UnwindSafe for RainbowSingleResult
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