import matplotlib.pyplot as plt
#面向对象接口的使用
fig = plt.figure()
ax = plt.axes()
print(type(fig))
print(type(ax))
<class 'matplotlib.figure.Figure'>
<class 'matplotlib.axes._subplots.AxesSubplot'>
Process finished with exit code 0
上面代码使用figure()函数创建了一个Figure对象,Figure对象可以看做包含一切图形元素的容器,如坐标、文字、标签。之后axes()创建了一个Axes(坐标轴)对象,也就是一个包含刻度和标签的箱子。
在使用Matplotlib绘图时,我们通常会使用fig指向一个Figure对象,ax指向一个坐标轴对象。现在已经有了坐标轴,我们只需要做的是往上添加数据。