matplotlib.axes.AxesSubplot的类定义在哪里?

时间:2013-02-13 19:25:44

标签: python class matplotlib

matplotlib轴的类是AxesSubplot

In [233]: type(gca())
Out[233]: matplotlib.axes.AxesSubplot

然而,这个名字似乎并不存在:

In [235]: import matplotlib.axes

In [236]: matplotlib.axes.AxesSubplot
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)
<ipython-input-236-d2888d8fac12> in <module>()
----> 1 matplotlib.axes.AxesSubplot

AttributeError: 'module' object has no attribute 'AxesSubplot'
2
In [237]: from matplotlib.axes import AxesSubplot
---------------------------------------------------------------------------
ImportError                               Traceback (most recent call last)
<ipython-input-237-86d07b77aa8f> in <module>()
----> 1 from matplotlib.axes import AxesSubplot

ImportError: cannot import name AxesSubplot

它不是使用type()的某种花哨调用创建的;至少,grep AxesSubplot不会在axes模块的模块源文件中返回任何结果。

如果我查看它的mro,我可以访问所有其他类的定义:

In [238]: type(gca()).mro()
Out[238]: 
[matplotlib.axes.AxesSubplot,
 matplotlib.axes.SubplotBase,
 matplotlib.axes.Axes,
 matplotlib.artist.Artist,
 builtins.object]

type(gca())报告matplotlib.axes.AxesSubplot怎么可能,但这个类似乎不存在?

我正在使用Python 3.2,Matplotlib 1.2,以防万一。

0 个答案:

没有答案