pub struct InfluenceFunctionDiagnostics { /* private fields */ }Expand description
Influence function diagnostics
Implementations§
Source§impl InfluenceFunctionDiagnostics
impl InfluenceFunctionDiagnostics
Sourcepub fn with_estimator(self, estimator: RobustEstimator) -> Self
pub fn with_estimator(self, estimator: RobustEstimator) -> Self
Set robust estimator
Sourcepub fn compute(&mut self, x: &Array2<f64>, y: &Array1<f64>) -> Result<()>
pub fn compute(&mut self, x: &Array2<f64>, y: &Array1<f64>) -> Result<()>
Compute influence diagnostics
Sourcepub fn get_influence_values(&self) -> Option<&Array1<f64>>
pub fn get_influence_values(&self) -> Option<&Array1<f64>>
Get influence values
Sourcepub fn get_leverage_values(&self) -> Option<&Array1<f64>>
pub fn get_leverage_values(&self) -> Option<&Array1<f64>>
Get leverage values
Sourcepub fn get_cook_distances(&self) -> Option<&Array1<f64>>
pub fn get_cook_distances(&self) -> Option<&Array1<f64>>
Get Cook’s distances
Trait Implementations§
Auto Trait Implementations§
impl Freeze for InfluenceFunctionDiagnostics
impl RefUnwindSafe for InfluenceFunctionDiagnostics
impl Send for InfluenceFunctionDiagnostics
impl Sync for InfluenceFunctionDiagnostics
impl Unpin for InfluenceFunctionDiagnostics
impl UnwindSafe for InfluenceFunctionDiagnostics
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> 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