ax=plt.subplot(111)
时间: 2023-11-02 20:27:25 浏览: 67
python 使用plt画图,去除图片四周的白边方法
This line of code creates a subplot in the current figure with 1 row, 1 column, and a subplot index of 1. The variable `ax` is assigned to this subplot object, which can be used to modify properties of the subplot such as the x and y axis limits, title, axis labels, etc.
阅读全文