【Python】matplotlib中pyplot.subplots_adjust参数含义的理解

官方文档1

def subplots_adjust(self, left=None, bottom=None, right=None, top=None, wspace=None, hspace=None)
	'''
	left = 0.125  # the left side of the subplots of the figure
	right = 0.9   # the right side of the subplots of the figure
	bottom = 0.1  # the bottom of the subplots of the figure
	top = 0.9     # the top of the subplots of the figure
	wspace = 0.2  # the amount of width reserved for space between subplots,
	              # expressed as a fraction of the average axis width
	hspace = 0.2  # the amount of height reserved for space between subplots,
	              # expressed as a fraction of the average axis height
	'''

参数含义:
left, right, bottom, top:子图所在区域的边界。
当值大于1.0的时候子图会超出figure的边界从而显示不全;值不大于1.0的时候,子图会自动分布在一个矩形区域(下图灰色部分)。
要保证left < right, bottom < top,否则会报错。
如下图:
【Python】matplotlib中pyplot.subplots_adjust参数含义的理解_第1张图片
wspace, hspace:子图之间的横向间距、纵向间距分别与子图平均宽度、平均高度的比值。
在所有子图都不超出left, right, top, bottom所围区域的条件下,子图的长宽比不变,而是按比例缩小,所以调整横向间距也可能影响纵向间距,反之亦然。
如下图(图中所有子图的宽度和高度对应相等,子图平均宽度和平均高度分别为w和h):

【Python】matplotlib中pyplot.subplots_adjust参数含义的理解_第2张图片


  1. https://matplotlib.org/devdocs/api/_as_gen/matplotlib.pyplot.subplots_adjust.html ↩︎

你可能感兴趣的:(编程笔记)