Uses of Class
elki.clustering.subspace.clique.CLIQUEUnit
-
Packages that use CLIQUEUnit Package Description elki.clustering.subspace Axis-parallel subspace clustering algorithms.elki.clustering.subspace.clique Helper classes for theCLIQUE
algorithm. -
-
Uses of CLIQUEUnit in elki.clustering.subspace
Methods in elki.clustering.subspace that return types with arguments of type CLIQUEUnit Modifier and Type Method Description private java.util.Collection<CLIQUEUnit>
CLIQUE. initOneDimensionalUnits(Relation<? extends NumberVector> database)
Initializes and returns the one dimensional units. -
Uses of CLIQUEUnit in elki.clustering.subspace.clique
Fields in elki.clustering.subspace.clique with type parameters of type CLIQUEUnit Modifier and Type Field Description private java.util.List<CLIQUEUnit>
CLIQUESubspace. denseUnits
The dense units belonging to this subspace.Methods in elki.clustering.subspace.clique that return CLIQUEUnit Modifier and Type Method Description protected CLIQUEUnit
CLIQUEUnit. join(CLIQUEUnit other, double all, double tau)
Joins this unit with the specified unit.protected CLIQUEUnit
CLIQUESubspace. leftNeighbor(CLIQUEUnit unit, int dim)
Returns the left neighbor of the given unit in the specified dimension.protected CLIQUEUnit
CLIQUESubspace. rightNeighbor(CLIQUEUnit unit, int dim)
Returns the right neighbor of the given unit in the specified dimension.Methods in elki.clustering.subspace.clique with parameters of type CLIQUEUnit Modifier and Type Method Description void
CLIQUESubspace. addDenseUnit(CLIQUEUnit unit)
Adds the specified dense unit to this subspace.private boolean
CLIQUEUnit. checkDimensions(CLIQUEUnit other, int e)
Check that the first e dimensions agree.protected boolean
CLIQUEUnit. containsLeftNeighbor(CLIQUEUnit unit, int d)
Returns true if this unit is the left neighbor of the given unit.protected boolean
CLIQUEUnit. containsRightNeighbor(CLIQUEUnit unit, int d)
Returns true if this unit is the right neighbor of the given unit.void
CLIQUESubspace. dfs(CLIQUEUnit unit, ModifiableDBIDs cluster, CLIQUESubspace model)
Depth-first search algorithm to find connected dense units in this subspace that build a cluster.protected CLIQUEUnit
CLIQUEUnit. join(CLIQUEUnit other, double all, double tau)
Joins this unit with the specified unit.protected CLIQUEUnit
CLIQUESubspace. leftNeighbor(CLIQUEUnit unit, int dim)
Returns the left neighbor of the given unit in the specified dimension.protected CLIQUEUnit
CLIQUESubspace. rightNeighbor(CLIQUEUnit unit, int dim)
Returns the right neighbor of the given unit in the specified dimension.Constructors in elki.clustering.subspace.clique with parameters of type CLIQUEUnit Constructor Description CLIQUEUnit(CLIQUEUnit prefix, int newdim, double min, double max, ModifiableDBIDs ids)
Creates a new k-dimensional unit for the given intervals.
-