pub struct LmResult {
pub coefficients: Vec<f64>,
pub std_errors: Vec<f64>,
pub t_values: Vec<f64>,
pub p_values: Vec<f64>,
pub r_squared: f64,
pub adj_r_squared: f64,
pub residuals: Vec<f64>,
pub f_statistic: f64,
pub f_p_value: f64,
}Expand description
Result of linear regression.
Fields§
§coefficients: Vec<f64>§std_errors: Vec<f64>§t_values: Vec<f64>§p_values: Vec<f64>§r_squared: f64§adj_r_squared: f64§residuals: Vec<f64>§f_statistic: f64§f_p_value: f64Trait Implementations§
Auto Trait Implementations§
impl Freeze for LmResult
impl RefUnwindSafe for LmResult
impl Send for LmResult
impl Sync for LmResult
impl Unpin for LmResult
impl UnsafeUnpin for LmResult
impl UnwindSafe for LmResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more