检索图实例中的所有matplotlib轴:我应该使用figure.get_axes()还是figure.axes?

时间:2017-05-04 07:24:27

标签: python python-3.x matplotlib figure

简单问题:

之间有什么区别
import matplotlib.pyplot as plt
f = plt.figure()
a = f.get_axes()

f = plt.figure()
a = f.axes

用于检索图实例中的所有轴?有哪些情况会更好?“

1 个答案:

答案 0 :(得分:2)

sourcecode for get_axes是:

def get_axes(self):
    return self.axes
因此,它完全没有区别。