import matplotlib.pyplot as plt #包含绘图模块 fig= plt._____(2)______() #创建一个空白画布 ax1=fig._______(3)___________(1,1,1) #添加一个子图 plt.show() #显示图表
时间: 2023-06-14 20:05:17 浏览: 176
利用python的matplotlib模块作图
import matplotlib.pyplot as plt #包含绘图模块
fig= plt.figure() #创建一个空白画布
ax1=fig.add_subplot(1,1,1) #添加一个子图
plt.show() #显示图表
阅读全文