pub struct WhiteTestOutput {
pub test_name: String,
pub r_result: Option<WhiteSingleResult>,
pub python_result: Option<WhiteSingleResult>,
pub interpretation: String,
pub guidance: String,
}Expand description
Result of the White test supporting both R and Python variants.
The White test is a general test for heteroscedasticity that does not assume a specific form. R and Python use different auxiliary regression specifications.
§Fields
test_name- Name of the testr_result- Result from R’s skedastic::white (if computed)python_result- Result from Python’s statsmodels (if computed)interpretation- Human-readable explanation of the resultguidance- Recommendations based on the test result
Fields§
§test_name: String§r_result: Option<WhiteSingleResult>§python_result: Option<WhiteSingleResult>§interpretation: String§guidance: StringTrait Implementations§
Source§impl Clone for WhiteTestOutput
impl Clone for WhiteTestOutput
Source§fn clone(&self) -> WhiteTestOutput
fn clone(&self) -> WhiteTestOutput
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 WhiteTestOutput
impl Debug for WhiteTestOutput
Auto Trait Implementations§
impl Freeze for WhiteTestOutput
impl RefUnwindSafe for WhiteTestOutput
impl Send for WhiteTestOutput
impl Sync for WhiteTestOutput
impl Unpin for WhiteTestOutput
impl UnwindSafe for WhiteTestOutput
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