subplot()함수를 사용합니다. 이 함수에는 3개의 정수를 전달합니다. 예로
subplot(abc);
a*b는 그래프의 배열을 의미합니다. 즉, a=row, b=column
c는 그래프의 번호 입니다.
>>> g1=plt.subplot(121)
>>> n, b, ig=g1.hist(trg, bins=int, normed=True, alpha=0.3)
>>> mu=np.mean(trg)
>>> sd=np.std(trg)
>>> g1.plot(b, norm.pdf(b, mu, sd), color="r", linewidth=2)
>>> g2=plt.subplot(122)
>>> x=stats.probplot(trg, dist="norm", plot=g2)
>>> plt.show()
위의 예는 1행 2열로 배치하여 왼쪽 부터 그림의 번호가 1,2번입니다.
subplot(abc);
a*b는 그래프의 배열을 의미합니다. 즉, a=row, b=column
c는 그래프의 번호 입니다.
>>> g1=plt.subplot(121)
>>> n, b, ig=g1.hist(trg, bins=int, normed=True, alpha=0.3)
>>> mu=np.mean(trg)
>>> sd=np.std(trg)
>>> g1.plot(b, norm.pdf(b, mu, sd), color="r", linewidth=2)
>>> g2=plt.subplot(122)
>>> x=stats.probplot(trg, dist="norm", plot=g2)
>>> plt.show()
위의 예는 1행 2열로 배치하여 왼쪽 부터 그림의 번호가 1,2번입니다.
댓글
댓글 쓰기