Enum statrs::statistics::RankTieBreaker
source · [−]pub enum RankTieBreaker {
Average,
Min,
Max,
First,
}
Expand description
Enumeration of possible tie-breaking strategies when computing ranks
Variants
Average
Replaces ties with their mean
Min
Replace ties with their minimum
Max
Replace ties with their maximum
First
Permutation with increasing values at each index of ties
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for RankTieBreaker
impl Send for RankTieBreaker
impl Sync for RankTieBreaker
impl Unpin for RankTieBreaker
impl UnwindSafe for RankTieBreaker
Blanket Implementations
Mutably borrows from an owned value. Read more
The inverse inclusion map: attempts to construct self
from the equivalent element of its
superset. Read more
Checks if self
is actually part of its subset T
(and can be converted to it).
Use with care! Same as self.to_subset
but without any property checks. Always succeeds.
The inclusion map: converts self
to the equivalent element of its superset.