plt.tight_layout()⾃动调节plt.subplot的间距
plt.figure()
plt.subplot(222)
plt.title("fig")
plt.plot(out[400:600])
plt.subplot(221)
plt.title("fig")
plt.plot(kkout[400:600,1])
plt.subplot(224)
plt.title("fig")
plt.plot(out[1900:2100])
plt.subplot(223)
plt.title("fig")
plt.plot(kkout[1900:2100,1])
#plt.tight_layout()
subplot中⼦图之间的标题重叠在⼀起
plt.figure()
plt.subplot(222)
plt.title("fig")
plt.plot(out[400:600])
plt.subplot(221)
plt.title("fig")
plt.plot(kkout[400:600,1])
plt.subplot(224)
plt.title("fig")
plt.plot(out[1900:2100])
plt.subplot(223)
plt.title("fig")
plt.plot(kkout[1900:2100,1])
matplotlib中subplotplt.tight_layout()
subplot中⼦图之间的标题不会重叠
如下为画图⽤例。设置⼦图⼤标题,以及⾏间距⾃动调整 tight_layout
import matplotlib.pyplot as plt
plt.figure()
import numpy as np
prelabitem=[[1,2],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]] prestatem=[1,2,3,4,5,6,7,8,9]
index=3
waveto= np.random.randint(0,3,(3,5,6))
voltage= np.random.randint(0,3,(5))
for indexk,[x,y] in enumerate(prelabitem):
plt.subplot(331+indexk)
plt.plot(voltage,(waveto[0, ..., x]-waveto[0, ..., y]).reshape(-1)) plt.suptitle('FN'+str(index)+' '+str(prestatem), fontsize=14)
plt.tight_layout()
plt.show()
plt.close()
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论