gpt4 book ai didi

python - python的matplotlib中如何获取当前图号?

转载 作者:太空狗 更新时间:2023-10-29 21:30:40 25 4
gpt4 key购买 nike

我正在研究一个示例脚本,该脚本展示了如何在图形之间来回切换。我在这里找到了这个例子:http://matplotlib.org/examples/pylab_examples/multiple_figs_demo.html当我尝试打印数字时,我得到的是“Figure(640x480)”而不是我期望的数字 1。你是怎么得到这个号码的?

# Working with multiple figure windows and subplots
import matplotlib.pyplot as plt
import numpy as np

t = np.arange(0.0, 2.0, 0.01)
s1 = np.sin(2*np.pi*t)
s2 = np.sin(4*np.pi*t)

plt.figure(1)
plt.subplot(211)
plt.plot(t, s1)
plt.subplot(212)
plt.plot(t, 2*s1)

plt.figure(2)
plt.plot(t, s2)

# now switch back to figure 1 and make some changes
plt.figure(1)
plt.subplot(211)
plt.plot(t, s2, 's')
ax = plt.gca()
ax.set_xticklabels([])

# Return a list of existing figure numbers.
print "Figure numbers are = " + str(plt.get_fignums())
print "current figure = " + str(plt.gcf())
print "current axes = " + str(plt.gca())

plt.show()

这是输出:

Figure numbers are = [1, 2]
current figure = Figure(640x480)
current axes = Axes(0.125,0.53;0.775x0.35)

最佳答案

Figure 对象有一个number 属性,所以你可以通过

>>> plt.gcf().number

关于python - python的matplotlib中如何获取当前图号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42322986/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com