PDF로 플롯 저장


90

플로팅 모듈

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()

모든 그래프 plot1, plot2, plot3을 하나의 PDF 파일에 저장하고 싶습니다. 그것을 달성하는 방법이 있습니까? plotGraph메인 모듈에 기능을 포함 할 수 없습니다 .

이름이 지정된 함수가 pylab.savefig있지만 플로팅 모듈과 함께 배치 된 경우에만 작동하는 것 같습니다. 그것을 달성하는 다른 방법이 있습니까?

답변:


208

누군가가 Google에서 여기에 도착하면 단일 그림을 .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')

1
pdf의 페이지 크기를 어떻게 설정합니까?
wherestheforce

2
@wherestheforce pdf의 페이지 크기를 직접 설정할 수 있는지 모르겠지만 그림 크기를 변경할 수 있습니다. 예를 들어 pdf 비율을 변경하려면 f = plt.figure (figsize = (5, 10))입니다.
Clement T.

119

단일 pdf 파일의 여러 플롯의 경우 PdfPages 를 사용할 수 있습니다 .

에서 plotGraph기능 당신은 그림과 전화보다 반환해야 savefig그림 개체를.

------ 플로팅 모듈 ------

def plotGraph(X,Y):
      fig = plt.figure()
      ### Plotting arrangements ###
      return fig

------ 플로팅 모듈 ------

----- mainModule ----

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()

3
"Plotting Arrangements"는 실제로 그림에 플롯을 추가하는 방법을 설명하는 예제가 필요합니다!
user2127595

1
@ user2127595 이것은 나를 위해 작동합니다 : def plot_graph (x, y1, y2) : fig = plt.figure () axes1 = fig.add_subplot (2, 1, 1) axes2 = fig.add_subplot (2, 1, 2) axes1. plot (x, y1) axes2.plot (x, y2) return fig
DeanM

22
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()

3
당신이 사용하는 경우 plt.show()이후에 넣어 pdf.savefig().
keras import michael

-23

그것을 할 방법이 없어도 상관 없습니다.

def plotGraph(X,Y):
     fignum = random.randint(0,sys.maxint)
     fig = plt.figure(fignum)
     ### Plotting arrangements ###
     return fig

------ 플로팅 모듈 ------

----- mainModule ----

 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 -----


19
잠깐, 플롯을 하나의 PDF 파일로 저장하고 싶다고 생각했습니다. 솔루션은 이미지를 세 개의 개별 PNG 파일로 저장하는데, 이는 다른 질문에 대한 답처럼 보입니다.
DSM 2012

2
정말 죄송합니다. 나는 어떻게 든 파일을 저장하는 것에 대해 더 집중하고 있었다. 나는 백엔드 pdf에 대해 알고 있었지만 내 작업을 계속했고 그것을 추가하는 것을 무시했습니다. 어쨌든 지적 해주셔서 감사합니다.
VoodooChild92

5
반대표 수를 보면이 답변을 삭제하여 다른 답변을위한 "공간"을 남겨 둘 수 있습니다.
PatrickT
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.