[][src]Struct simple_ml::DataMap

pub struct DataMap<'a> {
    pub string: HashMap<&'a str, Vec<&'a str>>,
    pub numerical: HashMap<&'a str, Vec<f64>>,
    pub boolean: HashMap<&'a str, Vec<bool>>,
}

Fields

string: HashMap<&'a str, Vec<&'a str>>numerical: HashMap<&'a str, Vec<f64>>boolean: HashMap<&'a str, Vec<bool>>

Implementations

impl<'a> DataMap<'a>[src]

pub fn describe(&self)[src]

pub fn groupby(&self, string_column: &str, operation: &str)[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for DataMap<'a>

impl<'a> Send for DataMap<'a>

impl<'a> Sync for DataMap<'a>

impl<'a> Unpin for DataMap<'a>

impl<'a> UnwindSafe for DataMap<'a>

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>,