pub struct JaccardDistance;Expand description
Jaccard distance for categorical data Measures dissimilarity between two sets based on the size of intersection and union For categorical vectors, treats each vector as a set of unique values
Trait Implementations§
Source§impl<T: PartialEq + Eq + Hash + Clone> CategoricalDistance<T> for JaccardDistance
impl<T: PartialEq + Eq + Hash + Clone> CategoricalDistance<T> for JaccardDistance
Source§fn distance(&self, a: ArrayView1<'_, T>, b: ArrayView1<'_, T>) -> Result<f64>
fn distance(&self, a: ArrayView1<'_, T>, b: ArrayView1<'_, T>) -> Result<f64>
Compute distance between two categorical data points
Source§fn distances_to_centroids(
&self,
point: ArrayView1<'_, T>,
centroids: ArrayView2<'_, T>,
) -> Result<Vec<f64>>
fn distances_to_centroids( &self, point: ArrayView1<'_, T>, centroids: ArrayView2<'_, T>, ) -> Result<Vec<f64>>
Compute distances between a single point and multiple centroids
Source§impl Clone for JaccardDistance
impl Clone for JaccardDistance
Source§fn clone(&self) -> JaccardDistance
fn clone(&self) -> JaccardDistance
Returns a duplicate 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 JaccardDistance
impl RefUnwindSafe for JaccardDistance
impl Send for JaccardDistance
impl Sync for JaccardDistance
impl Unpin for JaccardDistance
impl UnwindSafe for JaccardDistance
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more