在之前的文章中,分享过Matlab双轴柱线图的绘制模板:
这一次,再来分享一种特殊的柱线图:帕累托图。
‘帕累托图(Pareto chart)是将出现的质量问题和质量改进项目按照重要程度依次排列而采用的一种图表。以意大利经济学家V.Pareto的名字而命名的。帕累托图又叫排列图、主次图,是按照发生频率大小顺序绘制的直方图,表示有多少结果是由已确认类型或范畴的原因所造成’——百度百科
先来看一下成品效果:
特别提示:Matlab论文插图绘制模板系列,旨在降低大家使用Matlab进行科研绘图的门槛,只需按照模板格式添加相应内容,即可得到满足大部分期刊以及学位论文格式要求的数据插图。如果觉得有用可以分享给你的朋友。
模板中最关键的部分内容:
1. 数据准备
此部分主要是读取原始数据。
% 读取数据
load AircraftAccidents.mat
2. 颜色定义
颜色搭配比较考验个人审美,需要多加尝试。
这里直接用之前分享的addcolorplus工具中:
%% 颜色定义
C1 = addcolorplus(213);
C2 = addcolorplus(160);
3. 帕累托图绘制
使用‘pareto’命令,绘制未经美化的帕累托图。
[p, ax] = pareto(accidents,issue);
hTitle = title('Aircraft Mechnical Accident Trends');
hXLabel = xlabel('Types of Mechnical Issues');
hYLabel = ylabel('Number of Accidents');
4. 细节优化
为了插图的美观,对帕累托图中柱、线属性进行调整:
% 对象属性调整
% 柱属性
p(1).BarWidth = 0.5;
p(1).LineWidth = 1;
p(1).FaceColor = C1;
p(1).FaceAlpha = 1;
% 折线属性
p(2).LineStyle = '--';
p(2).LineWidth = 2;
p(2).Color = C2;
进一步,调整字体字号、背景颜色等属性:
% 坐标轴美化
set(ax(1), 'Box', 'off', ... % 边框
'LineWidth',1,... % 线宽
'XGrid', 'on', 'YGrid', 'on', ... % 网格
'TickDir', 'out', 'TickLength', [.01 .01], ... % 刻度
'XMinorTick', 'off', 'YMinorTick', 'off', ... % 小刻度
'XColor', [.1 .1 .1], 'YColor', [.1 .1 .1]) % 坐标轴颜色
set(ax(2), 'LineWidth',1,... % 线宽
'TickDir', 'out', 'TickLength', [.01 .01], ... % 刻度
'XMinorTick', 'off', 'YMinorTick', 'off', ... % 小刻度
'XColor', [.1 .1 .1], 'YColor', [.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', []);
% 字体和字号
set(gca, 'FontName', 'Arial', 'FontSize', 10)
set([hXLabel, hYLabel], 'FontName', 'Arial', 'FontSize', 11)
set(hTitle, 'FontSize', 12, 'FontWeight' , 'bold')
% 背景颜色
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');
以上。
Matlab帕累托图绘制模板数据与代码