我已经阅读了很多类似问题的答案,但是都没有帮助。
我只想增加子图与顶部,左侧和底部边缘之间的边距,以适合fig.suptitle
和常见的xlabel和ylabel。
import matplotlib.pyplot as plt
import random
#from matplotlib import rcParams
#rcParams['axes.titlepad'] = 20 # kind of works but shifts all titles, not only suptitle
def dummy(n):
return random.sample(range(1, 100), n)
data = dict()
for i in range(4):
data["area{}".format(i)] = [dummy(10), dummy(10)]
fig, ax = plt.subplots(2, 2, sharex='all', sharey='all', figsize=(10, 10))
fig.suptitle("Common title", fontsize=22)
ax = ax.reshape(-1)
for i, (area, data) in enumerate(data.items()):
ax[i].set_title(area)
ax[i].scatter(data[0], data[1])
fig.text(0.5, 0.01, 'xlabel', ha='center', fontsize=15)
fig.text(0.01, 0.5, 'ylabel', va='center', fontsize=15, rotation=90)
fig.tight_layout() # Does nothing
fig.subplots_adjust(top=0.85) # Does nothing
fig.show()
Matplotlib版本3.0.0
Python 3.6.6
答案 0 :(得分:0)
有许多方法可以解决此问题,但是我建议为此使用gridspec_kw
的{{1}}输入。 plt.subplots
的文档基本上只是gridspec.GridSpec的文档。例如:
gridspec_kw
fig, ax = plt.subplots(2, 2, sharex='all', sharey='all',
gridspec_kw=dict(left=0.1, right=0.9,
bottom=0.1, top=0.9),
figsize=(10, 10))
的{{1}},left
,...输入指定整个子图组的范围。
能给您想要的东西吗?