标签:alt 方法 get current 处理 模块 pre 实现 的区别
当前图表可以使用plt.gcf()获得
Get_ Current_Figure = plt.gcf()
当前子图可以使用Plt.gca()获得
Get_ Current_Axes = plt.gca()
在pyplot模块中,许多函数都是对当前的Figure或Axes对象进行处理,比如说:plt.plot()实际上会通过plt.gca()获得当前的Axes对象ax,然后再调用ax.plot()方法实现真正的绘图。
https://finthon.com/matplotlib-figure-axes/
plt.gca() 和 plt.gcf() ///////axes和pyplot绘图的区别
标签:alt 方法 get current 处理 模块 pre 实现 的区别
原文地址:https://www.cnblogs.com/ivyharding/p/12730929.html