上一篇文章分享了分区柱状图的绘制方法:
带分组折线段的分区柱状图是在原始分区柱状图的基础上,再添加分组折线段,用以增加一个对象的表达。
由于Matlab中未收录的带分组折线段的分区柱状图的绘制方法,因此需要大家自行解决。
本文利用自己制作的BlockBarwithLine工具,进行带分组折线段的分区柱状图的绘制,先来看一下成品效果:
特别提示:本期内容『数据+代码』已上传资源群中,加群的朋友请自行下载。有需要的朋友可以关注同名公号【阿昆的科研日常】,后台回复关键词【全家桶】查看加入方式。
1. 数据准备
此部分主要是读取原始数据并初始化绘图参数。
% 读取数据
load data.mat
% 初始化绘图参数
data1 = dataBar;
data2 = dataLine;
2. 颜色定义
作图不配色就好比做菜不放盐,总让人感觉少些味道。
但颜色搭配比较考验个人审美,需要多加尝试。
这里直接使用TheColor配色工具中的SCI权威配色库:
%% 颜色定义
map = TheColor('sci',1005);
C = map(1:4,1:3);
3. 带分组折线段的分区柱状图绘制
调用‘BlockBarwithLine’命令,绘制初始带分组折线段的分区柱状图。
[GO,L] = BlockBarwithLine(data1,data2,C,0.8);
hTitle = title('Block Bar with Line Plot');
hXLabel = xlabel('xaxis');
hYLabel = ylabel('yaxis');
4. 细节优化
为了插图的美观,对坐标轴细节等进行美化:
% 线型调整
for i = 1:length(L)
L(i).Marker = "o";
L(i).LineWidth = 1.5;
end
% 坐标区调整
set(gca, 'Box', 'off', ... % 边框
'LineWidth',1,... % 线宽
'Layer','top',...
'XGrid', 'off', 'YGrid', 'off', ... % 网格
'TickDir', 'out', 'TickLength', [.01 .01], ... % 刻度
'XMinorTick', 'off', 'YMinorTick', 'off', ... % 小刻度
'XColor', [.1 .1 .1], 'YColor', [.1 .1 .1]) % 坐标轴颜色
% 坐标区刻度调整
set(gca, 'xticklabel',{'M1','M2','M3','M1','M2','M3','M1','M2','M3','M1','M2','M3'})
% legend
hLegend = legend([GO,L], ...
'A', 'B', 'C','D','S1', 'S2', 'S3','S4', ...
'Location', 'eastoutside',...
'Box','off');
% 字体和字号
set(gca, 'FontName', 'Arial', 'FontSize', 10)
set([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');
以上。