여러 플롯을 하나의 PDF 파일에 저장
플롯팅 모듈
def plotGraph(X,Y):
fignum = random.randint(0,sys.maxint)
plt.figure(fignum)
### Plotting arrangements ###
return fignum
메인모듈
import matplotlib.pyplot as plt
### tempDLStats, tempDLlabels are the argument
plot1 = plotGraph(tempDLstats, tempDLlabels)
plot2 = plotGraph(tempDLstats_1, tempDLlabels_1)
plot3 = plotGraph(tempDLstats_2, tempDLlabels_2)
plt.show()
모든 그래프 플롯1, 플롯2, 플롯3을 하나의 PDF 파일에 저장하려고 합니다.그것을 달성할 수 있는 방법이 있습니까?포함할 수 없습니다.plotGraph
메인 모듈의 기능을 합니다.
이름이 붙은 함수가 있습니다.pyplot.savefig
하지만 그것은 오직 하나의 수치에서만 작동하는 것 같습니다.그것을 달성하기 위한 다른 방법이 있습니까?
만약 누군가가 구글에서 여기로 오게 된다면, 하나의 수치를 .pdf로 변환하려고 합니다. (그것이 제가 찾던 것이었습니다.)
import matplotlib.pyplot as plt
f = plt.figure()
plt.plot(range(10), range(10), "o")
plt.show()
f.savefig("foo.pdf", bbox_inches='tight')
단일 pdf 파일의 여러 플롯의 경우 pdf 페이지를 사용할 수 있습니다.
에서plotGraph
function 당신은 figure를 반환하고 전화를 하는 것보다savefig
피규어 오브젝트의.
------ 플롯팅 모듈 --------
def plotGraph(X,Y):
fig = plt.figure()
### Plotting arrangements ###
return fig
------ 플롯팅 모듈 --------
----- 주 모듈 ----
from matplotlib.backends.backend_pdf import PdfPages
plot1 = plotGraph(tempDLstats, tempDLlabels)
plot2 = plotGraph(tempDLstats_1, tempDLlabels_1)
plot3 = plotGraph(tempDLstats_2, tempDLlabels_2)
pp = PdfPages('foo.pdf')
pp.savefig(plot1)
pp.savefig(plot2)
pp.savefig(plot3)
pp.close()
매트플롯리브 설명서 사이트에서 제공하는 표준 예제는 다음과 같습니다.
import datetime
import numpy as np
from matplotlib.backends.backend_pdf import PdfPages
import matplotlib.pyplot as plt
# Create the PdfPages object to which we will save the pages:
# The with statement makes sure that the PdfPages object is closed properly at
# the end of the block, even if an Exception occurs.
with PdfPages('multipage_pdf.pdf') as pdf:
plt.figure(figsize=(3, 3))
plt.plot(range(7), [3, 1, 4, 1, 5, 9, 2], 'r-o')
plt.title('Page One')
pdf.savefig() # saves the current figure into a pdf page
plt.close()
plt.rc('text', usetex=True)
plt.figure(figsize=(8, 6))
x = np.arange(0, 5, 0.1)
plt.plot(x, np.sin(x), 'b-')
plt.title('Page Two')
pdf.savefig()
plt.close()
plt.rc('text', usetex=False)
fig = plt.figure(figsize=(4, 5))
plt.plot(x, x*x, 'ko')
plt.title('Page Three')
pdf.savefig(fig) # or you can pass a Figure object to pdf.savefig
plt.close()
# We can also set the file's metadata via the PdfPages object:
d = pdf.infodict()
d['Title'] = 'Multipage PDF Example'
d['Author'] = u'Jouni K. Sepp\xe4nen'
d['Subject'] = 'How to create a multipage pdf file and set its metadata'
d['Keywords'] = 'PdfPages multipage keywords author title subject'
d['CreationDate'] = datetime.datetime(2009, 11, 13)
d['ModDate'] = datetime.datetime.today()
신경쓰지 마세요.
def plotGraph(X,Y):
fignum = random.randint(0,sys.maxint)
fig = plt.figure(fignum)
### Plotting arrangements ###
return fig
------ 플롯팅 모듈 --------
----- 주 모듈 ----
import matplotlib.pyplot as plt
### tempDLStats, tempDLlabels are the argument
plot1 = plotGraph(tempDLstats, tempDLlabels)
plot2 = plotGraph(tempDLstats_1, tempDLlabels_1)
plot3 = plotGraph(tempDLstats_2, tempDLlabels_2)
plt.show()
plot1.savefig('plot1.png')
plot2.savefig('plot2.png')
plot3.savefig('plot3.png')
----- mainModule -----
언급URL : https://stackoverflow.com/questions/11328958/save-multiple-plots-in-a-single-pdf-file
'programing' 카테고리의 다른 글
형제자매 지시사항과 의사소통 (0) | 2023.10.06 |
---|---|
InnoDB 테이블을 My ISAM 테이블과 결합하는 중 (0) | 2023.10.06 |
오버플로된 Div 내의 요소로 스크롤하려면 어떻게 해야 합니까? (0) | 2023.10.06 |
npm 설치 오류 - 로컬 발급자 인증서를 가져올 수 없습니다. (0) | 2023.10.06 |
C/C++의 통사당 (0) | 2023.10.06 |