매트플롯립에게 플롯이 끝났다는 것을 어떻게 알립니까? 다음 코드는 두 개의 PostScript(.ps) 파일로 플롯되지만 두 번째 코드는 두 줄을 모두 포함합니다. import matplotlib import matplotlib.pyplot as plt import matplotlib.mlab as mlab plt.subplot(111) x = [1,10] y = [30, 1000] plt.loglog(x, y, basex=10, basey=10, ls="-") plt.savefig("first.ps") plt.subplot(111) x = [10,100] y = [10, 10000] plt.loglog(x, y, basex=10, basey=10, ls="-") plt.savefig("second.ps..