■ Figure 클래스의 savefig 메소드를 사용해 차트 이미지를 저장하는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
import matplotlib.pyplot as pp import numpy as np pointCount = 1000 xList = [] yList = [] for i in range(pointCount): x = np.random.normal(0.0, 0.55) y = x * 0.1 + 0.3 + np.random.normal(0.0, 0.03) xList.append(x) yList.append(y) pp.plot(xList, yList, "ro") figure = pp.gcf() pp.grid() pp.show() figure.savefig("result.png") figure.savefig("result.jpg") |