HISTOGRAM 2 COLOURS - positive numbers red, negative numbers blue
조회 수: 4 (최근 30일)
이전 댓글 표시
Hello,
I have a histogram showing temperature warming (positive numbers) and cooling (negative). It is based on linear regression and the basic code for hte histpgram part is below.
I am wondering is it possible to do the positive bars (there are 1000s) in red and the neg (100s) in blue? Similar to the split in the picture below the code (obviously without the arrow etc.).
slopes = slope_TSA(:);
slopes(isnan(slopes)) = [];
figure;
histogram(slopes);
ylim([0 180000]);
xlim([-0.0001 0.0002]);
title('Distribution of combined ctl slopes - TSA');
댓글 수: 0
채택된 답변
madhan ravi
2018년 12월 4일
편집: madhan ravi
2018년 12월 4일
EDITED
h=histogram(slopes(slopes>0));
h.FaceColor='red'
hold on
h1=histogram(slopes(slopes<0));
h1.FaceColor='blue'
댓글 수: 7
madhan ravi
2018년 12월 4일
Download https://www.mathworks.com/matlabcentral/fileexchange/59361-histogram-percentage you may find it useful
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Spline Postprocessing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!