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])

plt.tight_layout() 

 subplot中子图之间的标题不会重叠

 

更多技巧,如标记 坐标轴格式 https://blog.csdn.net/Asher117/article/details/85128463

 

如下为画图用例。设置子图大标题,以及行间距自动调整 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()

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值