pub struct FTestResult {
pub statistic: f64,
pub p_value: f64,
pub df_num: usize,
pub df_denom: f64,
pub restriction_gap: Array1<f64>,
}Expand description
Result of a linear-restriction F test.
Fields§
§statistic: f64F statistic (R θ̂ - r)' (R V̂ R')⁻¹ (R θ̂ - r) / q.
p_value: f64Upper-tail F(df_num, df_denom) p-value.
df_num: usizeNumerator degrees of freedom (number of restrictions).
df_denom: f64Denominator degrees of freedom.
restriction_gap: Array1<f64>R θ̂ - r — the fitted deviation from the restriction.
Trait Implementations§
Source§impl Clone for FTestResult
impl Clone for FTestResult
Source§fn clone(&self) -> FTestResult
fn clone(&self) -> FTestResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FTestResult
impl Debug for FTestResult
Source§impl<'de> Deserialize<'de> for FTestResult
impl<'de> Deserialize<'de> for FTestResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for FTestResult
impl PartialEq for FTestResult
Source§impl Serialize for FTestResult
impl Serialize for FTestResult
impl StructuralPartialEq for FTestResult
Auto Trait Implementations§
impl Freeze for FTestResult
impl RefUnwindSafe for FTestResult
impl Send for FTestResult
impl Sync for FTestResult
impl Unpin for FTestResult
impl UnsafeUnpin for FTestResult
impl UnwindSafe for FTestResult
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