Making a heatmap from a table
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
christiaan van Weeghel
el 16 de Mzo. de 2018
Comentada: christiaan van Weeghel
el 16 de Mzo. de 2018
I'm currently working on analysing some data, and i'd like to view this in a heatmap. I've put all my data in a table with the genes im analyzing in the rows, and the patients in the columns. the names are to the sides of the table. The data runs from 1:1 to 125:6 but when i try to make a heatmap of all this data i get the error Error using heatmap (line 48) 'XVariable' value must reference a single variable in the source table. I've tried selecting all the data using H = Heatmap(Htable, 1:64, 1:125); Does anybody know how i can create a heatmap using all the data in the table. with the genes and patientnumbers added. The table was made by using array2table(data, 'rownames', Genes, 'variablenames', patientnumbers);
0 comentarios
Respuesta aceptada
Guillaume
el 16 de Mzo. de 2018
It's not clear what is supposed to go in the x and y axis of your heat map and what defines the colour.
If the x axis is supposed to be the patient number, the y axis the gene and the colour, the value at the intersection of both, then your table is not constructed correctly for it. The easiest to get your heatmap is to bypass the table and use:
heatmap(patientnumbers, Genes, data);
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Distribution Plots 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!