plt.subplot设置子图大小
时间: 2023-05-18 17:07:18 浏览: 1686
matplotilb中fig,ax = plt.subplots()的使用
可以使用plt.subplots_adjust(left=0.1, bottom=0.1, right=0.9, top=0.9, wspace=0.4, hspace=0.4)来设置子图的大小和间距。其中left、bottom、right、top分别表示子图的左、下、右、上边界的位置,wspace和hspace表示子图之间的水平和垂直间距。
阅读全文