欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【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的注释讲解,比网上大多数讲的清楚

相关标签: pytorch plt