[][src]Struct simple_ml::DataFrame

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

Fields

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

Implementations

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

pub fn describe(&self)[src]

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

pub fn sort(
    &self,
    col_type: &str,
    col_number: usize,
    ascending: bool
) -> DataFrame
[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for DataFrame<'a>

impl<'a> Send for DataFrame<'a>

impl<'a> Sync for DataFrame<'a>

impl<'a> Unpin for DataFrame<'a>

impl<'a> UnwindSafe for DataFrame<'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>,