How to get a list of column names within the same cluster in MATLAB
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Daniel
el 9 de Mayo de 2017
Comentada: Norman Dovichi
el 30 de Abr. de 2021
I have a dendrogram defined by:
dm=DataMatrix(mydata,rowscell,columnnames);
cg = clustergram(dm,'Standardize','none');
I got group of clusters and I want to know which column names are within each cluster. I can look at the map, but if my column names are on the 1000s, it is not convenient to copy them manually from the graphic dendrogram.
Is there any function I can get the list of column names within each (or specific) cluster?
0 comentarios
Respuesta aceptada
Wilson A N
el 12 de Mayo de 2017
Editada: Wilson A N
el 12 de Mayo de 2017
I think you can use the 'clusterGroup' command to get the corresponding cluster for a specific group.
For example,
cgo4group = clusterGroup(cg,4,'row')
will give the 4th cluster group. Now to get the row names you have to just execute the following command:
>> cgo4group.RowLabels
More information can be found in the following link:
1 comentario
Norman Dovichi
el 30 de Abr. de 2021
Más respuestas (0)
Ver también
Categorías
Más información sobre Matrix Indexing en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!