pub struct CohortOutlierResult {
pub entity_id: u64,
pub drift_magnitude: f32,
pub z_score: f32,
pub drift_direction_alignment: f32,
}Expand description
An outlier entity in cohort drift analysis.
Fields§
§entity_id: u64Entity identifier.
drift_magnitude: f32Individual drift magnitude.
z_score: f32Z-score relative to cohort.
drift_direction_alignment: f32Alignment with cohort mean drift direction.
Trait Implementations§
Source§impl Clone for CohortOutlierResult
impl Clone for CohortOutlierResult
Source§fn clone(&self) -> CohortOutlierResult
fn clone(&self) -> CohortOutlierResult
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 CohortOutlierResult
impl RefUnwindSafe for CohortOutlierResult
impl Send for CohortOutlierResult
impl Sync for CohortOutlierResult
impl Unpin for CohortOutlierResult
impl UnwindSafe for CohortOutlierResult
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