Package | Description |
---|---|
edu.ucla.sspace.clustering |
Modifier and Type | Method and Description |
---|---|
static HierarchicalAgglomerativeClustering.ClusterLinkage |
HierarchicalAgglomerativeClustering.ClusterLinkage.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HierarchicalAgglomerativeClustering.ClusterLinkage[] |
HierarchicalAgglomerativeClustering.ClusterLinkage.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
List<Merge> |
HierarchicalAgglomerativeClustering.buildDendogram(Matrix m,
HierarchicalAgglomerativeClustering.ClusterLinkage linkage,
Similarity.SimType similarityFunction)
Builds a dendrogram of the rows of similarity matrix by iteratelyve
linking each row according to the linkage policy in a bottom up manner.
|
List<Merge> |
HierarchicalAgglomerativeClustering.buildDendrogram(Matrix similarityMatrix,
HierarchicalAgglomerativeClustering.ClusterLinkage linkage)
Builds a dendrogram of the rows of similarity matrix by iteratively
linking each row according to the linkage policy in a bottom up manner.
|
static int[] |
HierarchicalAgglomerativeClustering.clusterRows(Matrix m,
double clusterSimilarityThreshold,
HierarchicalAgglomerativeClustering.ClusterLinkage linkage,
Similarity.SimType similarityFunction)
Clusters all rows in the matrix using the specified cluster similarity
measure for comparison and threshold for when to stop clustering.
|
static int[] |
HierarchicalAgglomerativeClustering.partitionRows(Matrix m,
int numClusters,
HierarchicalAgglomerativeClustering.ClusterLinkage linkage,
Similarity.SimType similarityFunction)
Clusters all rows in the matrix using the specified cluster similarity
measure for comparison and stopping when the number of clusters is equal
to the specified number.
|
Copyright © 2012. All Rights Reserved.