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