Clustergram. Changing the range of the colorbar
10 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
George
el 30 de Abr. de 2021
Comentada: George
el 3 de Mayo de 2021
From a 17x17 array, I've plotted the attached clustergram. The array values range from 1 to 5. The values on the diagonal are equal to 1.
I have the following questions:
- The colorbar values are obviously wrong. They range from -3 to 3. The correct range should should be 1 to 5. There no negative values in the array. I tried colormapeditor but failed to find an answer to this problem.
- Is there a way to change the colours of the clustergram to correspond to the colorbar (say "parula")?
6 comentarios
Respuesta aceptada
Adam Danz
el 3 de Mayo de 2021
Editada: Adam Danz
el 3 de Mayo de 2021
The color scale is based on standardized values even if standardize is set to none.
You can set the range of standardized values as a scalar using,
cgo_all = clustergram(rd,___);
cgo_all.DisplayRange = ____
which adjusts the range of the colorbar but will still contain negative values because of standardization.
It may be helpful to review this example from the documentation that explains that the data are standardized so that the mean is 0 which is why colorbar values are +/-.
Más respuestas (0)
Ver también
Categorías
Más información sobre Polygons 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!