Skip to main content

IntoAttributeIterator

Trait IntoAttributeIterator 

Source
pub trait IntoAttributeIterator {
    // Required methods
    fn iter_categorical(
        &self,
        attribute: Attribute,
    ) -> CategoricalAttributeIterator<'_> ;
    fn iter_numeric(&self, attribute: Attribute) -> NumericAttributeIterator<'_> ;
    fn iter_time(&self, attribute: Attribute) -> TimeAttributeIterator<'_> ;
}

Required Methods§

Source

fn iter_categorical( &self, attribute: Attribute, ) -> CategoricalAttributeIterator<'_>

Iterator over the categorical attribute values of traces, i.e. for traces that do not have the attribute set, a None is included. A call to .flatten() transforms this to remove those values.

Source

fn iter_numeric(&self, attribute: Attribute) -> NumericAttributeIterator<'_>

Iterator over tbe numeric attribute values of traces, i.e. for traces that do not have the attribute set, a None is included. A call to .flatten() transforms this to remove those values.

Source

fn iter_time(&self, attribute: Attribute) -> TimeAttributeIterator<'_>

Iterator over the time attribute values of traces, i.e. for traces that do not have the attribute set, a None is included. A call to .flatten() transforms this to remove those values.

Implementors§