참조 : https://stackoverflow.com/questions/11328958/save-multiple-plots-in-a-single-pdf-file
with PdfPages('multipage_pdf.pdf') as pdf:
# 그래프1
plt.figure(figsize=(3, 3))
plt.plot(range(7), [0,1,2,3,4,5,6], 'r-o')
plt.title('graph one')
pdf.savefig() # saves the current figure into a pdf page
# 그래프2
plt.figure(figsize=(3, 3))
plt.plot(range(7), [0,1,2,3,4,5,6], 'r-o')
plt.title('graph two')
pdf.savefig() # saves the current figure into a pdf page
# plt.close() 그래프 출력안할거면 사용
'<문법> > 파이썬' 카테고리의 다른 글
파이썬 파일에서 (1) train시작 bash문 실행 + (2) train종료 bash문 종료(ctrl+c) (0) | 2022.07.10 |
---|---|
DataFrame 자주쓰는 문법 정리 (0) | 2022.03.28 |
Matplotlib 바그래프 문법정리 (0) | 2021.07.22 |
Pandas 열 한개 여러개로 쪼개기 (0) | 2021.01.13 |
형태소 분석 기본 연습 - 명사만 골라내기 (konlpy - Twitter) (0) | 2021.01.13 |