Visualise Large correlation matrix
9 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hi Everybody,
Is there anyway I can create a correlation matrix heatmap in matlab?
I have a huge correlation matrix table which has been calculated in SPSS. I just need a better way of visualising this data, if anyone has any ideas that I could achieve this using matlab?
Thanks!
Cameron
0 Kommentare
Antworten (2)
Peng Li
am 26 Mär. 2020
You can visualize a matrix by heatmap using imagesc function.
>> test = randn(100, 100);
>> figure; imagesc(test); colorbar;
0 Kommentare
Cameron Kirk
am 27 Mär. 2020
1 Kommentar
Peng Li
am 27 Mär. 2020
better use colorbar to add a color bar so that you know the corresponding levels these colors are for. Basically this means your correlation matrix shows bigger values on row around 60. Is that expected?
Siehe auch
Kategorien
Mehr zu Data Distribution Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!