pub struct AutoFeatureEngineerFitted { /* private fields */ }Expand description
Fitted automated feature engineer
Implementations§
Source§impl AutoFeatureEngineerFitted
impl AutoFeatureEngineerFitted
Sourcepub fn selected_features(&self) -> &[usize]
pub fn selected_features(&self) -> &[usize]
Get selected feature indices
Sourcepub fn feature_names(&self) -> &[String]
pub fn feature_names(&self) -> &[String]
Get feature names
Sourcepub fn feature_scores(&self) -> &[f64]
pub fn feature_scores(&self) -> &[f64]
Get feature scores
Sourcepub fn feature_importance(&self) -> &[f64]
pub fn feature_importance(&self) -> &[f64]
Get feature importance
Sourcepub fn transformations(&self) -> &[TransformationFunction]
pub fn transformations(&self) -> &[TransformationFunction]
Get transformation functions
Sourcepub fn correlation_matrix(&self) -> Option<&Array2<f64>>
pub fn correlation_matrix(&self) -> Option<&Array2<f64>>
Get correlation matrix (if computed)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AutoFeatureEngineerFitted
impl RefUnwindSafe for AutoFeatureEngineerFitted
impl Send for AutoFeatureEngineerFitted
impl Sync for AutoFeatureEngineerFitted
impl Unpin for AutoFeatureEngineerFitted
impl UnwindSafe for AutoFeatureEngineerFitted
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