在Atom IDE上使用matplotlib绘制多个数字

时间:2017-11-22 12:49:46

标签: python matplotlib atom-editor

我可以在Atom IDE上使用python和matplotlib成功绘图。但是,如果我绘制两个或更多图形,只有一个图形窗口出现第一个图形,并且看到其他图形我必须关闭初始窗口,在这种情况下,下一个图形将生成并显示。我无法同时看到所有的数字我必须逐一关闭图形标签以查看不同的数字。示例代码:

import matplotlib.pyplot as plt
import numpy as np

t = np.arange(0.0, 2.0, 0.01)
s = 1 + np.sin(2 * np.pi * t)
plt.figure()
plt.plot(t, s)

plt.xlabel('time (s)')
plt.ylabel('voltage (mV)')
plt.title('About as simple as it gets, folks')
plt.grid(True)
plt.show()

plt.figure()
plt.plot(t, s)

plt.xlabel('time (s)')
plt.ylabel('voltage (mV)')
plt.title('About as simple as it gets, folks')
plt.grid(True)
plt.show()

非常感谢任何帮助或建议,提前感谢

1 个答案:

答案 0 :(得分:0)

你自己回答了你的问题,但如果我可以:尝试查看次要情节。 ;)

它允许你在单独的情节上绘制多个东西,但是在同一个图上。