byCluster | R Documentation |
Re-organize a vector valued clustering into an list which groups cluster members together
byCluster(clustering, excludeSingletons = TRUE)
clustering |
A named vector in which the names are cluster members and the values are cluster labels. This is format output by jarvisPatrick. |
excludeSingletons |
If true only clusters with more than 1 member will be in the output, otherwise all clusters will be used. |
A list with a slot for each cluster. Each slot of the list is a vector containing the cluster members.
Kevin Horan
jarvisPatrick
data(apset)
cl = jarvisPatrick(nearestNeighbors(apset,cutoff=0.6),k=2)
print(byCluster(cl))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.