python – plt.figure()vs Matplotlib中的子图

前端之家收集整理的这篇文章主要介绍了python – plt.figure()vs Matplotlib中的子图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在Matplotlib中,许多示例以ax = subplot(111)的形式出现,然后函数应用于ax,如ax.xaxis.set_major_formatter(FuncFormatter(myfunc)). (找到 here)

或者,当我不需要子图时,我可以执行plt.figure(),然后使用plt.plot()或类似函数绘制我需要的任何内容.

现在,我正好在第二种情况下,但我想在X轴上调用函数set_major_formatter.在plt上调用它当然不会起作用:

>>> plt.xaxis.set_major_formatter(FuncFormatter(myfunc)) 
Traceback (most recent call last):
File "<stdin>",line 1,in <module> 
AttributeError: 'module' object has no attribute 'xaxis'

我该怎么办?

解决方法

如果选择了您想要的数字,只需使用gca()获取当前轴实例:
ax = gca()
ax.xaxis.set_major_formatter(FuncFormatter(myfunc))
原文链接:https://www.f2er.com/python/241808.html

猜你在找的Python相关文章