【plt】subplot设置子图大小
程序员文章站
2022-03-21 18:01:44
...
仅记录
1. 问题描述:
想设置每个子图的大小
2. 实现代码:
fig, (axes1, axes2) = plt.subplots(2, 1, figsize=(100, 10))
axes1.plot(np.arange(time_length), np.zeros(time_length))
axes2.plot(np.arange(time_length), np.zeros(time_length))
3. 直接Ctrl+B看plt.subplot的注释讲解,比网上大多数讲的清楚
上一篇: PHP实现简单留言板功能的方法
下一篇: oauth2 + jwt 实现用户中心