pub struct AppxDbscanLabeler { /* private fields */ }
Expand description

Struct that labels a set of points according to the Approximated DBSCAN algorithm

Implementations

Runs the Approximated DBSCAN algorithm on the provided observations using the params specified in input. The Labeler struct returned contains the label of every point in observations.

Parameters:
  • observations: the points that you want to cluster according to the approximated DBSCAN rule;
  • params: the parameters for the approximated DBSCAN algorithm
Return

Struct of type Labeler which contains the label associated with each point in observations

Gives the labels of every point provided in input to the constructor.

Example:

use ndarray::{array, Axis};
use linfa::prelude::*;
use linfa_clustering::{AppxDbscanLabeler, AppxDbscan};

// Let's define some observations and set the desired params
let observations = array![[0.,0.], [1., 0.], [0., 1.]];
let params = AppxDbscan::params(2).check().unwrap();
// Now we build the labels for each observation using the Labeler struct
let labeler = AppxDbscanLabeler::new(&observations.view(),&params);
// Here we can access the labels for each point `observations`
for (i, point) in observations.axis_iter(Axis(0)).enumerate() {
    let label_for_point = labeler.labels()[i];
}  

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.

The type for initializers.

Initializes a with the given initializer. Read more

Dereferences the given pointer. Read more

Mutably dereferences the given pointer. Read more

Drops the object pointed to by the given pointer. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.