matplotlib 知识点整理:ax与figure

Posted UQI-LIUWJ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib 知识点整理:ax与figure相关的知识,希望对你有一定的参考价值。

1 axis与figure

我们可以把figure看成一个大的画布;ax(axis)看成是画布中的一块区域

2 plt.plot()与ax.plot()

 如果不考虑子图的话,plt.plot()效果和ax.plot()一致

 plt.plot()相当于生成了一个figure画布,然后在画布上隐式生成一个画图区域进行画图

ax.plot()相当于同时生成了figure和axis两个对象,然后在ax对象的区域内画图

3 subplot

import matplotlib.pyplot as plt

fig,ax=plt.subplots(2,1)

fig,ax

可以看到,一个画布,两个子图区域

import matplotlib.pyplot as plt

fig,ax=plt.subplots(1,2)

ax[0].plot([1,2,3],[4,5,6])
ax[1].scatter([1,2,3],[4,5,6])

 

 

以上是关于matplotlib 知识点整理:ax与figure的主要内容,如果未能解决你的问题,请参考以下文章

matplotlib 基础

关于 matplotlib

python工具——Matplotlib

python工具——Matplotlib

python matplotlib 中ax.legend()用法解释

matplotlib的学习15-次坐标轴