在之前的文章中,分享了很多Matlab带置信区间的折线图的绘制模板:
进一步,再来分享一下带置信区间的折线散点图的绘制模板。
先来看一下成品效果:
特别提示:本期内容『数据+代码』已上传资源群中,加群的朋友请自行下载。有需要的朋友可以关注同名公号【阿昆的科研日常】,后台回复关键词【绘图桶】查看加入方式。
模板中最关键的部分内容:
1. 数据准备
此部分主要是读取原始数据。
% 读取数据
load data.mat
2. 颜色定义
作图不配色就好比做菜不放盐,总让人感觉少些味道。
但颜色搭配比较考验个人审美,需要多加尝试。
这里直接使用TheColor配色工具中的XKCD配色库:
%% 颜色定义
C = TheColor('xkcd',[426 627]);
C1 = C(1,1:3);
C2 = C(2,1:3);
3. 带置信区间的折线散点图绘制
使用‘fill’、‘line’和‘scatter’命令,绘制初始带置信区间的折线散点图。
P1 = fill([xconfu1,xconfd1],[yconfu1,yconfd1],C1);
P2 = fill([xconfu2,xconfd2],[yconfu2,yconfd2],C2);
L1 = line(x,y11);
L2 = line(x,y22);
S1 = scatter(x,y1,40,'filled');
S2 = scatter(x,y2,40,'filled');
hTitle = title('Line-Scatter Chart with Confidence Interval');
hXLabel = xlabel('GlobBiomass AGB');
hYLabel = ylabel('AGB');
4. 细节优化
为了插图的美观,将初始带置信区间的折线散点图赋上之前选择的颜色并对一些属性进行调整:
% 赋色及属性调整
set(P1,'FaceColor',[0.5 0.5 0.5],'FaceAlpha',0.2,'EdgeColor','none')
set(P2,'FaceColor',[0.5 0.5 0.5],'FaceAlpha',0.2,'EdgeColor','none')
set(L1,'LineStyle','-','LineWidth',3, 'Color',C1)
set(L2,'LineStyle','-','LineWidth',3, 'Color',C2)
set(S1,'MarkerFaceColor',C1,'MarkerEdgeColor','none')
set(S2,'MarkerFaceColor',C2,'MarkerEdgeColor','none')
然后,对坐标轴细节等进行美化:
% 坐标区调整
set(gca, 'Box', 'off', ... % 边框
'Layer','top',... % 图层
'LineWidth',1,... % 线宽
'XGrid', 'off', 'YGrid', 'on', ... % 网格
'TickDir', 'out', 'TickLength', [0.01 0.01], ... % 刻度
'XMinorTick', 'off', 'YMinorTick', 'off', ... % 小刻度
'XColor', [.1 .1 .1], 'YColor', [.1 .1 .1]) % 坐标轴颜色
set(gca, 'XLim',[-0.01 1.01],...
'YLim',[-65 30])
% Legend
hLegend = legend([S1,S2,L1,L2], ...
'Data1','Data2','Fit1','Fit2', ...
'Location', 'southeast',...
'NumColumns',2);
% 字体和字号
set(gca, 'FontName', 'Arial', 'FontSize', 10)
set([hLegend,hXLabel,hYLabel], 'FontSize', 11, 'FontName', 'Arial')
set(hTitle, 'FontSize', 12, 'FontWeight' , 'bold')
% 背景颜色
set(gcf,'Color',[1 1 1])
% 添加上、右框线
xc = get(gca,'XColor');
yc = get(gca,'YColor');
unit = get(gca,'units');
ax = axes( 'Units', unit,...
'Position',get(gca,'Position'),...
'XAxisLocation','top',...
'YAxisLocation','right',...
'Color','none',...
'XColor',xc,...
'YColor',yc);
set(ax, 'linewidth',1,...
'XTick', [],...
'YTick', []);
设置完毕后,以期刊所需分辨率、格式输出图片。
%% 图片输出
figW = figureWidth;
figH = figureHeight;
set(figureHandle,'PaperUnits',figureUnits);
set(figureHandle,'PaperPosition',[0 0 figW figH]);
fileout = 'test';
print(figureHandle,[fileout,'.png'],'-r300','-dpng');
以上。