pub struct CohortOutlier {
pub entity_id: u64,
pub drift_magnitude: f32,
pub z_score: f32,
pub drift_direction_alignment: f32,
}Expand description
An entity whose drift deviates significantly from the cohort.
Fields§
§entity_id: u64Entity identifier.
drift_magnitude: f32Individual L2 drift magnitude.
z_score: f32Z-score relative to cohort distribution.
drift_direction_alignment: f32Cosine similarity between this entity’s drift direction and the cohort mean direction.
Trait Implementations§
Source§impl Clone for CohortOutlier
impl Clone for CohortOutlier
Source§fn clone(&self) -> CohortOutlier
fn clone(&self) -> CohortOutlier
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CohortOutlier
impl RefUnwindSafe for CohortOutlier
impl Send for CohortOutlier
impl Sync for CohortOutlier
impl Unpin for CohortOutlier
impl UnwindSafe for CohortOutlier
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more