fig, ax = plt.subplots(figsize=(15, 9))
时间: 2023-07-08 22:55:28 浏览: 167
matplotilb中fig,ax = plt.subplots()的使用
这段代码使用 Matplotlib 库创建一个新的图表,并返回一个 Figure 对象和一个 AxesSubplot 对象。其中 figsize 参数用于设置图表的尺寸,以英寸为单位。因此,这段代码创建的图表大小为 15 英寸(宽)x 9 英寸(高)。
可以使用返回的 Figure 对象和 AxesSubplot 对象来添加图形元素,如线条、文本、标题等。例如:
```
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(15, 9))
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
ax.plot(x, y)
ax.set_title('My Plot')
ax.set_xlabel('X Axis')
ax.set_ylabel('Y Axis')
plt.show()
```
这将创建一个大小为 15 英寸 x 9 英寸的图表,并绘制一个简单的线条图,添加标题和轴标签。
阅读全文