在上一篇文章中,分享了Matlab直方图的绘制模板:
进一步,再来分享一下二元直方图的绘制模板。
先来看一下成品效果:
特别提示:Matlab论文插图绘制模板系列,旨在降低大家使用Matlab进行科研绘图的门槛,只需按照模板格式添加相应内容,即可得到满足大部分期刊以及学位论文格式要求的数据插图。如果觉得有用可以分享给你的朋友。
模板中最关键的部分内容:
1. 数据准备
此部分主要是读取原始数据(数据来源:MATLAB Plot Gallery)。
% 读取数据
load rideData.mat
2. 颜色定义
由于需要根据柱子的高度进行赋色,所以应采用渐变色配色。
这里直接用之前分享的addcolorplus工具:
%% 颜色定义
map = addcolorplus(296);
map = flipud(map);
3. 二元直方图绘制
使用‘histogram2’命令,绘制未经美化的二元直方图。
h1 = histogram2(rideData.Duration, rideData.birth_date,...
'DisplayStyle','bar3',...
'ShowEmptyBins','off',...
'FaceColor','flat',...
'FaceLighting','flat');
hTitle = title('Ride counts based on ride length and the age of the rider');
hXLabel = xlabel('Length of Ride');
hYLabel = ylabel('Birth Year');
hZLabel = zlabel('Number of Rides');
值得一提的是,histogram2函数需要Matlab R2015b以上。
4. 细节优化
为了插图的美观,赋上之前选择好的渐变色:
% 赋色
colormap(map)
进一步,调整字体字号、背景颜色等属性:
% 坐标轴美化
set(gca, 'Box', 'on', ... % 边框
'XGrid', 'on', 'YGrid', 'on', 'ZGrid', 'on', ... % 网格
'TickDir', 'out', 'TickLength', [.01 .01], ... % 刻度
'XMinorTick','off','YMinorTick','off','ZMinorTick','off', ... % 小刻度
'XColor', [.1 .1 .1],'YColor', [.1 .1 .1],'ZColor', [.1 .1 .1],... % 坐标轴颜色
'ytick',1920:20:2000,... % 坐标轴刻度范围
'ylim',[1930 1990])
% 字体和字号
set(gca, 'FontName', 'Arial', 'FontSize', 10)
set([hXLabel,hYLabel,hZLabel], 'FontName', 'Arial', 'FontSize', 10)
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二元直方图绘制模板