pub enum Label {
    HighMild,
    HighSevere,
    LowMild,
    LowSevere,
    NotAnOutlier,
}
Expand description

Labels used to classify outliers

Variants§

§

HighMild

A “mild” outlier in the “high” spectrum

§

HighSevere

A “severe” outlier in the “high” spectrum

§

LowMild

A “mild” outlier in the “low” spectrum

§

LowSevere

A “severe” outlier in the “low” spectrum

§

NotAnOutlier

A normal data point

Implementations§

Checks if the data point has an “unusually” high value

Checks if the data point is labeled as a “mild” outlier

Checks if the data point has an “unusually” low value

Checks if the data point is labeled as an outlier

Checks if the data point is labeled as a “severe” outlier

Auto Trait Implementations§

Blanket Implementations§

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.