[][src]Struct agnes::frame::Framed

pub struct Framed<T> { /* fields omitted */ }

Structure to hold references to a data structure (e.g. DataStore) and a frame used to view that structure. Provides DataIndex for the underlying data structure, as viewed through the frame.

Methods

impl<T> Framed<T>[src]

pub fn new(
    permutation: Rc<Permutation<Vec<usize>>>,
    data: DataRef<T>
) -> Framed<T>
[src]

Create a new framed view of some data, as view through a particular DataFrame.

Trait Implementations

impl<T> Typed for Framed<T>[src]

type DType = T

Associated data type with this type.

impl<T> SelfValued for Framed<T>[src]

impl<T> DataIndex for Framed<T> where
    T: Debug
[src]

type DType = T

The data type contained within this field.

fn is_empty(&self) -> bool[src]

Returns whether or not this field is empty.

Important traits for DataIterator<'a, 'b, T>
fn iter(&self) -> DataIterator<Self::DType> where
    Self: Sized
[src]

Returns an iterator over the values in this field.

fn permute<'a, 'b>(
    &'a self,
    permutation: &'b [usize]
) -> Result<DataIterator<'a, 'b, Self::DType>> where
    Self: Sized
[src]

Returns an iterator over the values in this field, as permuted by pemutation. permutation is a slice of indices into this DataIndex. Read more

fn to_vec(&self) -> Vec<Self::DType> where
    Self: Sized,
    Self::DType: Clone
[src]

Copies existing values in this field into a new Vec. Read more

fn to_value_vec(&self) -> Vec<Value<Self::DType>> where
    Self: Sized,
    Self::DType: Clone
[src]

Copies values (missing or existing) in this field into a new Vec.

impl<T> HashIndex for Framed<T> where
    Value<&'a T>: Hash,
    Self: DataIndex<DType = T>, 
[src]

impl<T> PartialEqIndex for Framed<T> where
    Value<&'a T>: PartialEq,
    Self: DataIndex<DType = T>, 
[src]

impl<T> Clone for Framed<T>[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<T: PartialEq> PartialEq<Framed<T>> for Framed<T>[src]

impl<T: Eq> Eq for Framed<T>[src]

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

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

impl<T: Hash> Hash for Framed<T>[src]

fn hash_slice<H>(data: &[Self], state: &mut H) where
    H: Hasher
1.3.0
[src]

Feeds a slice of this type into the given [Hasher]. Read more

impl<T: Debug> Debug for Framed<T>[src]

impl<T> Serialize for Framed<T> where
    T: Serialize,
    Self: DataIndex<DType = T>, 
[src]

Auto Trait Implementations

impl<T> !Send for Framed<T>

impl<T> !Sync for Framed<T>

Blanket Implementations

impl<T> IntoLabeled for T[src]

impl<T> Valued for T where
    T: SelfValued
[src]

type Value = T

The associated value.

impl<T> HasLabels for T[src]

impl<Needle, Haystack> HasLabels for Haystack where
    Haystack: Member<Needle, IsMember = B1>,
    Needle: Label
[src]

impl<DI> SortOrder for DI where
    DI: DataIndex,
    <DI as DataIndex>::DType: Ord
[src]

impl<DI> SortOrderUnstable for DI where
    DI: DataIndex,
    <DI as DataIndex>::DType: Ord
[src]

impl<DI, F> SortOrderComparator for DI where
    DI: DataIndex,
    F: FnMut(Value<&<DI as DataIndex>::DType>, Value<&<DI as DataIndex>::DType>) -> Ordering
[src]

impl<DI, F> SortOrderUnstableComparator for DI where
    DI: DataIndex,
    F: FnMut(Value<&<DI as DataIndex>::DType>, Value<&<DI as DataIndex>::DType>) -> Ordering
[src]

impl<DI, P> FilterPerm for DI where
    DI: DataIndex,
    P: FnMut(Value<&<DI as DataIndex>::DType>) -> bool
[src]

impl<Frames, Store> JoinIntoStore for Frames[src]

type Output = Store

The output type after augmenting Store.

impl<DI> NaCount for DI where
    DI: DataIndex
[src]

impl<DI> Sum for DI where
    DI: DataIndex,
    <DI as DataIndex>::DType: Add<&'a <DI as DataIndex>::DType>,
    <DI as DataIndex>::DType: Zero,
    <<DI as DataIndex>::DType as Add<&'a <DI as DataIndex>::DType>>::Output == <DI as DataIndex>::DType
[src]

type Output = <DI as DataIndex>::DType

The data type of the sum result.

impl<DI> Mean for DI where
    DI: DataIndex + NaCount + Sum,
    <DI as Sum>::Output: AsPrimitive<f64>, 
[src]

impl<DI> SumSq for DI where
    DI: DataIndex,
    <DI as DataIndex>::DType: Add<&'a <DI as DataIndex>::DType>,
    <DI as DataIndex>::DType: Zero,
    &'a <DI as DataIndex>::DType: Mul<&'b <DI as DataIndex>::DType>,
    <<DI as DataIndex>::DType as Add<&'a <DI as DataIndex>::DType>>::Output == <DI as DataIndex>::DType,
    <&'a <DI as DataIndex>::DType as Mul<&'b <DI as DataIndex>::DType>>::Output == <DI as DataIndex>::DType
[src]

type Output = <DI as DataIndex>::DType

The data type of the sum result.

impl<DI> Variance for DI where
    DI: DataIndex + SumSq + NaCount + Mean,
    <DI as SumSq>::Output: AsPrimitive<f64>, 
[src]

fn stdev(&self) -> f64[src]

Computes sample standard deviation of this field. Ignores missing values in this computation. If all values are missing, returns 0.0. Read more

fn stdevp(&self) -> f64[src]

Computes population standard deviation of this field. Ignores missing values in this computation. If all values are missing, returns 0.0. Read more

impl<DI> Extrema for DI where
    DI: DataIndex,
    <DI as DataIndex>::DType: PartialOrd<<DI as DataIndex>::DType>, 
[src]

type Output = <DI as DataIndex>::DType

The data type of the upper and lower values.

impl<Frames> AssocDataIndexCons for Frames[src]

type Output = Nil

Type of associated data index cons-list.

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

impl<T> From for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<Q, K> Equivalent for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Erased for T

impl<Q, K> Equivalent for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

impl<T> Same for T[src]

type Output = T

Should always be Self