Uses of Interface
elki.database.datastore.IntegerDataStore
-
Packages that use IntegerDataStore Package Description elki.clustering Clustering algorithms.elki.clustering.kmedoids.initialization elki.clustering.silhouette Silhouette clustering algorithms.elki.database.datastore General data store layer API (along the lines ofMap<DBID, T>
- use everywhere!)elki.database.datastore.memory Memory data store implementation for ELKI. -
-
Uses of IntegerDataStore in elki.clustering
Methods in elki.clustering with parameters of type IntegerDataStore Modifier and Type Method Description static ArrayModifiableDBIDs[]
ClusteringAlgorithmUtil. partitionsFromIntegerLabels(DBIDs ids, IntegerDataStore assignment, int k)
Collect clusters from their [0;k-1] integer labels. -
Uses of IntegerDataStore in elki.clustering.kmedoids.initialization
Methods in elki.clustering.kmedoids.initialization with parameters of type IntegerDataStore Modifier and Type Method Description static boolean
AlternateRefinement. findMedoid(DBIDs ids, DistanceQuery<?> distQ, IntegerDataStore assignment, int j, DBIDArrayMIter miter, double[] cost)
Find the best medoid of a given fixed set. -
Uses of IntegerDataStore in elki.clustering.silhouette
Methods in elki.clustering.silhouette with parameters of type IntegerDataStore Modifier and Type Method Description protected double
PAMMEDSIL.Instance. medoidsilhouette(IntegerDataStore assignment, DBIDArrayIter m)
Evaluate the average medoid Silhouette of the current cluster assignmentprotected double
PAMMEDSIL.Instance. medoidsilhouette(IntegerDataStore assignment, DBIDArrayIter m, int hoff, DBIDRef h)
Evaluate the average medoid Silhouette of the current cluster assignmentprotected void
PAMSIL.Instance. reassignToNearestCluster(IntegerDataStore prev, WritableIntegerDataStore assignment, ArrayDBIDs medoids, int pi, DBIDRef h)
Assign each object to the nearest cluster when replacing one medoid.protected double
PAMSIL.Instance. silhouette(IntegerDataStore assignment, int k)
Evaluate the average Silhouette of the current cluster assignment -
Uses of IntegerDataStore in elki.database.datastore
Subinterfaces of IntegerDataStore in elki.database.datastore Modifier and Type Interface Description interface
WritableIntegerDataStore
Data store specialized for doubles.Fields in elki.database.datastore declared as IntegerDataStore Modifier and Type Field Description private IntegerDataStore
DataStoreUtil.AscendingByIntegerDataStore. scores
Scores to use for sorting.private IntegerDataStore
DataStoreUtil.DescendingByIntegerDataStore. scores
Scores to use for sorting.Constructors in elki.database.datastore with parameters of type IntegerDataStore Constructor Description AscendingByIntegerDataStore(IntegerDataStore scores)
Constructor.DescendingByIntegerDataStore(IntegerDataStore scores)
Constructor. -
Uses of IntegerDataStore in elki.database.datastore.memory
Classes in elki.database.datastore.memory that implement IntegerDataStore Modifier and Type Class Description class
ArrayIntegerStore
A class to answer representation queries using the stored Array.class
MapIntegerDBIDIntegerStore
Writable data store for double values.
-