Scatter plot matrixの作り方
14 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
下図のような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);
として作成することができたのですが、それらを組み合わせた表の作り方が分かりません。
宜しくお願い致します。![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/377716/image.jpeg)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/377716/image.jpeg)
0 comentarios
Respuestas (0)
Ver también
Categorías
Más información sobre 離散データ プロット en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!