필터 지우기
필터 지우기

Plot only upper part(half) of the correlation matrix

조회 수: 17 (최근 30일)
sally_wu
sally_wu 2015년 10월 12일
답변: Mu Qiao 2016년 7월 19일
I have the following correlation matrix, and would like to plot only the upper part as the lower part is just a mirror of the upper part. I also do not want to show the pink line (regression line) in the correlation matrix. How can I do that?
I used the following command:
corrplot('data') and get the following plot:

답변 (1개)

Mu Qiao
Mu Qiao 2016년 7월 19일
I may have a naive solution.
for i = 1:10
for j = 1:i
delete(subplot(10,10,(i-1)*12+j));
end
end

카테고리

Help CenterFile Exchange에서 Visual Exploration에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by