Matplotlib中子图的不透明度(不使用轴)

时间:2019-01-31 00:44:23

标签: matplotlib

可以在matplotlib中设置轴的不透明度:

fig, ((ax00, ax01), (ax10, ax11)) = plt.subplots(2, 2)
ax00.patch.set_alpha(0.5)

如何通过以下方法在没有轴的情况下设置子图的不透明度:

fig = plt.figure()
plt.subplot(1, 2, 1)
plt.imshow(np.random.normal(size = (155, 155)))
plt.subplot(1, 2, 2)
plt.imshow(np.random.normal(size = (55, 55)))
plt.show()

0 个答案:

没有答案