蝴蝶气泡图是一种特殊的柱泡图/气泡柱状图。
蝴蝶图一般由左右两个水平柱状图组合而成,其形如蝴蝶展翅,可以很直观地展示两种数据直接的差异。
而蝴蝶气泡图则是在两个水平柱状图每根柱子外侧额外添加大小不同的气泡,用于表示另外一个数据变量的大小。
本文利用自己制作的BubbleButterfly工具,进行蝴蝶气泡图的绘制,先来看一下成品效果:
特别提示:本期内容『数据+代码』已上传资源群中,加群的朋友请自行下载。有需要的朋友可以关注同名公号【阿昆的科研日常】,后台回复关键词【绘图桶】查看加入方式。
1. 数据准备
此部分主要是读取原始数据并初始化绘图参数。
% 读取数据
load data.mat
% 初始化绘图参数
butterflydata1 = x1;
butterflydata2 = x2;
bubbledata1 = y1;
bubbledata2 = y2;
offset1 = 800;
textoffset1 = 100;
offset2 = 800;
textoffset2 = 100;
bsz = [5 30];
Label={'Sample1','Sample2','Sample3','Sample4','Sample5','Sample6','Sample7','Sample8'};
2. 颜色定义
作图不配色就好比做菜不放盐,总让人感觉少些味道。
但颜色搭配比较考验个人审美,需要多加尝试。
这里直接使用TheColor配色工具中的SCI权威配色库:
Colors = TheColor('sci',498);
C1 = Colors(1,1:3);
C2 = Colors(2,1:3);
3. 蝴蝶气泡图绘制
调用‘BubbleButterfly’和命令,绘制初始蝴蝶气泡图。
[ax1,ax2,b1,b2,bubble1,bubble2]=BubbleButterfly(figureHandle,butterflydata1,butterflydata2, ...
bubbledata1,bubbledata2,offset1,offset2,bsz,Label,'normal');
% 添加左翼气泡注释
for i = 1:length(bubbledata1)
text(ax1, ...
offset1+textoffset1, i, num2str(bubbledata1(i)), ...
'HorizontalAlignment','right', ...
'VerticalAlignment','middle', ...
'FontSize',10, ...
'FontName','Arial', ...
'color','k')
end
% 添加右翼气泡注释
for i = 1:length(bubbledata2)
text(ax2, ...
offset2+textoffset2, i, num2str(bubbledata2(i)), ...
'HorizontalAlignment','left', ...
'VerticalAlignment','middle', ...
'FontSize',10, ...
'FontName','Arial', ...
'color','k')
end
4. 细节优化
为了插图的美观与信息完整性,对图形细节等进行美化:
% 左翼优化
% 赋色
b1.FaceColor = C1;
bubble1.MarkerFaceColor = C1;
bubble1.MarkerEdgeColor = C1;
bubble1.MarkerFaceAlpha = 1;
% 坐标区调整
set(ax1, 'Box','off',... % 边框
'LineWidth',1,... % 坐标轴线宽
'TickLength',[0 0],... % 刻度
'XGrid','on','YGrid','off',... % 网格
'XDir','reverse',... % X坐标轴方向
'YDir','reverse',... % Y坐标轴方向
'YAxisLocation','right',... % Y坐标轴位置
'YTick',[]) % Y刻度
ax1.XRuler.Axle.LineStyle = 'none';
set(ax1, 'xtick',0:200:800,...
'xlim', [0 1000],...
'ylim', [0.5 8.5])
% 标签及Legend1设置
hLegend1 = legend(ax1, ...
'Feature1', ...
'Location', 'northoutside');
hLegend1.ItemTokenSize = [10 10];
hLegend1.Box = 'off';
% 字体字号
set([ax1,hLegend1], 'FontName', 'Arial', 'FontSize', 9)
% 右翼优化
% 赋色
b2.FaceColor = C2;
bubble2.MarkerFaceColor = C2;
bubble2.MarkerEdgeColor = C2;
bubble2.MarkerFaceAlpha = 1;
% 坐标区调整
set(ax2, 'Box','off',... % 边框
'LineWidth',1,... % 坐标轴线宽
'TickLength',[0 0],... % 刻度
'XGrid','on','YGrid','off',... % 网格
'XDir','normal',... % X坐标轴方向
'YDir','reverse',... % Y坐标轴方向
'YAxisLocation','left',... % Y坐标轴位置
'YTick',[]) % Y刻度
ax2.XRuler.Axle.LineStyle = 'none';
set(ax2, 'xtick',0:200:800,...
'xlim', [0 1000],...
'ylim', [0.5 8.5])
% 标签及Legend2设置
hLegend2 = legend(ax2, ...
'Feature2', ...
'Location', 'northoutside');
hLegend2.ItemTokenSize = [10 10];
hLegend2.Box = 'off';
% 字体字号
set([ax2,hLegend2], 'FontName', 'Arial', 'FontSize', 9)
% 背景颜色
set(gcf,'Color',[1 1 1])
设置完毕后,以期刊所需分辨率、格式输出图片。
%% 图片输出
figW = figureWidth;
figH = figureHeight;
set(figureHandle,'PaperUnits',figureUnits);
set(figureHandle,'PaperPosition',[0 0 figW figH]);
fileout = 'test';print(figureHandle,[fileout,'.png'],'-r300','-dpng');
以上。