[][src]Struct fanova::Fanova

pub struct Fanova { /* fields omitted */ }

fANOVA object.

Implementations

impl Fanova[src]

pub fn fit(features: Vec<&[f64]>, target: &[f64]) -> Result<Self, FitError>[src]

Builds an fANOVA model for the given features and target.

This is equivalent to FanovaOptions::new().fit(features, target).

pub fn quantify_importance(&mut self, features: &[usize]) -> Importance[src]

Calculates the importance of the given features.

pub fn clear(&mut self)[src]

Clears the internal cache.

Trait Implementations

impl Debug for Fanova[src]

Auto Trait Implementations

impl RefUnwindSafe for Fanova

impl Send for Fanova

impl Sync for Fanova

impl Unpin for Fanova

impl UnwindSafe for Fanova

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,