在之前的文章中,分享了一个Matlab单组柱状图的绘制模板:
多组柱状图的绘制模板:
横向多组柱状图的绘制模板:
那么这次来补上横向单组柱状图的绘制模板。
先来看一下成品效果:
特别提示:Matlab论文插图绘制模板系列,旨在降低大家使用Matlab进行科研绘图的门槛,只需按照模板格式添加相应内容,即可得到满足大部分期刊以及学位论文格式要求的数据插图。如果觉得有用可以分享给你的朋友。
模板中最关键的部分内容:
1. 数据准备
此部分主要是读取数据,定义自变量和因变量。
% 读取数据
% 因变量
x = [261 473 483 636 919 1066 1252 1555 1910];
% 自变量
y = 1:9;
2. 颜色定义
颜色搭配比较考验个人审美,需要多加尝试。
这里直接用之前分享的addcolorplus工具的渐变色:
%% 颜色定义
map = addcolorplus(296);
idx = linspace(1,64,9);
idx = round(idx);
C = map(idx,:);
其中,linspace(1,64,9)里的9表示因变量的个数,也就是barh的数量。
3. 多色单组柱状图绘制
使用‘barh’命令,绘制未经美化的横向单组柱状图。
GO = barh(y,x,0.9,'EdgeColor','k');
hTitle = title({'Excess natural deaths (ages 1yr +) per million population'; 'by province, up to 8 September'});
hXLabel = xlabel('Excess natural deaths (1 year+) per million population');
hYLabel = ylabel('Province');
4. 细节优化
为了插图的美观,赋上之前选择好的颜色。
% 赋色
GO.FaceColor = 'flat';
for i = 1:9
GO.CData(i,:) = C(i,:);
end
进一步,调整坐标轴刻度、字体字号、背景颜色等细节:
% 坐标区调整
set(gca, 'Box', 'off', ... % 边框
'XGrid', 'off', 'YGrid', 'off', ... % 网格
'TickDir', 'out', 'TickLength', [.015 .015], ... % 刻度
'XMinorTick', 'off', 'YMinorTick', 'off', ... % 小刻度
'XColor', [.1 .1 .1], 'YColor', [.1 .1 .1],... % 坐标轴颜色
'YTick', 1:1:9,... % 刻度位置、间隔、范围
'Ylim' , [0.3 9.7], ...
'XTick', 0:500:2000,...
'Xlim' , [0 2000], ...
'Xticklabel',{0:500:2000},...
'Yticklabel',{'LP','NW','MP','KZN','NC','GP','WC','FS','EC'})
% 字体字号
set(gca, 'FontName', 'Arial', 'FontSize', 10)
set([hXLabel,hYLabel], 'FontName', 'Arial', 'FontSize', 10)
set(hTitle, 'FontSize', 11, '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横向单组多色柱状图模板