このコードを実行すると、2番目のmatplotlib.pyplotウィンドウは、このように順に開いたときに最初のウィンドウを閉じた後にのみ表示されます。複数のウィンドウを同時に表示するにはどうすればよいですか?同時matplotlib.pyplot Windows
def graph(xList, yList, string):
xArr = numpy.array(xList)
yArr = numpy.array(yList)
matplotlib.pyplot.plot(xArr,yArr)
matplotlib.pyplot.title(string)
matplotlib.pyplot.show()
graph(posX,posY, "positive")
graph(negX,negY, "negative")