フィルターのクリア

Visualise Large correlation matrix

9 ビュー (過去 30 日間)
Cameron Kirk
Cameron Kirk 2020 年 3 月 26 日
コメント済み: Peng Li 2020 年 3 月 27 日
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

回答 (2 件)

Peng Li
Peng Li 2020 年 3 月 26 日
You can visualize a matrix by heatmap using imagesc function.
>> test = randn(100, 100);
>> figure; imagesc(test); colorbar;

Cameron Kirk
Cameron Kirk 2020 年 3 月 27 日
Hi Peng Li,
Thanks for getting back to me.
Unfortunately when I try that with my own own data, or all I get is a colour map that looks like the graph below
  1 件のコメント
Peng Li
Peng Li 2020 年 3 月 27 日
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?

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeData Distribution Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by