[][src]Struct dahl_salso::clustering::Clusterings

pub struct Clusterings { /* fields omitted */ }

Implementations

impl Clusterings[src]

pub fn from_i32_column_major_order(
    original_labels: &[i32],
    n_items: usize
) -> Self
[src]

pub fn make_confusion_matrices(
    &self,
    state: &WorkingClustering
) -> Array3<CountType>
[src]

pub fn n_clusterings(&self) -> usize[src]

pub fn n_items(&self) -> usize[src]

pub fn label(&self, draw_index: usize, item_index: usize) -> LabelType[src]

pub fn labels(&self, draw_index: usize) -> &[LabelType][src]

pub fn n_clusters(&self, draw_index: usize) -> LabelType[src]

pub fn max_clusters(&self) -> LabelType[src]

pub fn mean_and_sd_of_n_clusters(&self) -> (f64, f64)[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,