Scatter plot matrixの作り方
3 views (last 30 days)
Show older comments
下図のようなScatter plot matrix(左下にScatter plot、右上に相関係数)を作成したいと考えています。
Scatter plotは
X = [A B C D];
xnames = {'Data A','Data B','Data C','Data D'};
[h,ax] = gplotmatrix(X,[],[],color,[],8,'off','variable',xnames)
相関係数のヒートマップは
R = corrcoef(X)
h = heatmap(R);
として作成することができたのですが、それらを組み合わせた表の作り方が分かりません。
宜しくお願い致します。
0 Comments
Answers (0)
See Also
Categories
Find more on 離散データ プロット in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!