import matplotlib.pyplot as plt #【错误行】 包含绘图模块 fig= plt.figure() #创建一个空白画布 ax1=fig.plot(1,1,1) #【错误行】 添加一个子图 plt.show() #显示图表
时间: 2023-06-14 16:05:35 浏览: 125
matplotlib基础语法及常见参数
代码中存在两个错误:
1. 导入的 matplotlib 库中的 pyplot 模块应该使用 import matplotlib.pyplot as plt 的方式导入;
2. 绘图函数应该使用 plt.subplot(1, 1, 1) 而不是 fig.plot(1, 1, 1)。
修改后的代码如下:
```python
import matplotlib.pyplot as plt #导入绘图模块
fig = plt.figure() #创建一个空白画布
ax1 = plt.subplot(1, 1, 1) #添加一个子图
plt.show() #显示图表
```
这段代码可以创建一个空白画布,并在其中添加一个子图,最后显示出来。
阅读全文