Zapisz wykresy do pliku PDF

91

moduł plotujący

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

moduł główny

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

Chcę zapisać wszystkie wykresy plot1, plot2, plot3 w jednym pliku PDF. Czy jest jakiś sposób, aby to osiągnąć? Nie mogę umieścić plotGraphfunkcji w głównym module.

Istnieje funkcja o nazwie, pylab.savefigktóra wydaje się działać tylko wtedy, gdy jest umieszczona wraz z modułem plotowania. Czy jest inny sposób, aby to osiągnąć?

VoodooChild92
źródło

Odpowiedzi:

209

Jeśli ktoś trafi tutaj z Google, chcąc przekonwertować pojedynczą cyfrę na plik .pdf (właśnie tego szukałem):

import matplotlib.pyplot as plt

f = plt.figure()
plt.plot(range(10), range(10), "o")
plt.show()

f.savefig("foo.pdf", bbox_inches='tight')
Clement T.
źródło
1
Jak ustawić rozmiar strony w pliku PDF?
siłą
2
@wherestheforce Nie jestem pewien, czy możesz bezpośrednio ustawić rozmiar strony pliku PDF, ale możesz zmienić rozmiar rysunku: na przykład f = plt.figure (figsize = (5, 10)), aby zmienić współczynnik pdf.
Clement T.
119

W przypadku wielu wydruków w jednym pliku PDF można użyć PdfPages

W plotGraphfunkcji należy zwrócić figurę, a następnie wywołać savefigobiekt figury.

------ moduł plotera ------

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

------ moduł plotera ------

----- 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()
arjenve
źródło
3
„Plotting Arrangements” zasługuje na przykład, aby wyjaśnić, jak właściwie dodawać wykresy do rycin!
user2127595
1
@ user2127595 To działa dla mnie: 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()
Victor Juliet
źródło
3
Jeśli używasz, plt.show()umieść to po pdf.savefig().
z keras import michael
-23

Nieważne, jak to zrobić.

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

------ moduł plotera ------

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

VoodooChild92
źródło
19
Poczekaj, myślałem, że chcesz zapisać wykresy w jednym pliku PDF. Twoje rozwiązanie zapisuje obrazy w trzech oddzielnych plikach PNG, co wydaje się odpowiedzią na inne pytanie.
DSM,
2
Strasznie przepraszam. W jakiś sposób bardziej koncentrowałem się na zapisaniu pliku. Wiedziałem o backendowych plikach PDF, ale kontynuowałem pracę i zapomniałem ich dodać. W każdym razie, dzięki za wskazanie tego.
VoodooChild92
5
Widząc liczbę głosów przeciw, możesz pomyśleć o usunięciu tej odpowiedzi, aby zostawić „miejsce” na inne odpowiedzi.
PatrickT