Anpassen der Größe von Unterplots
In Matplotlib kann das Erstellen von Unterplots mit unterschiedlichen Größen mit verschiedenen Methoden erreicht werden. Um eine breitere Nebenhandlung zu erstellen, können Sie die Funktion „fig“ verwenden.
„fig“ mit „subplots“ verwenden
Um die Größe der ersten Nebenhandlung anzupassen, ändern Sie die 'figsize'-Argument im Konstruktor. Das Ändern der Größe des zweiten Diagramms erfordert jedoch einen anderen Ansatz.
import matplotlib.pyplot as plt # Create a figure and subplots with different width ratios f, (a0, a1) = plt.subplots(1, 2, width_ratios=[3, 1]) # Add plots to the subplots a0.plot(data_1) # Plot data to the first subplot (wider) a1.plot(data_2) # Plot data to the second subplot # Save the figure to PDF f.savefig('grid_figure.pdf')
Verwendung von „subplots“ und „gridspec_kw“
Alternativ können Sie die „subplots“ verwenden. Funktion und übergeben Sie das Breitenverhältnisargument mit 'gridspec_kw'.
import numpy as np import matplotlib.pyplot as plt # Generate data x = np.arange(0, 10, 0.2) y = np.sin(x) # Plot using subplots with gridspec_kw f, (a0, a1) = plt.subplots(1, 2, gridspec_kw={'width_ratios': [3, 1]}) # Add plots to the subplots a0.plot(x, y) a1.plot(y, x) # Save the figure to PDF f.tight_layout() f.savefig('grid_figure.pdf')
Vertikale Unterplots
Um Unterplots mit unterschiedlichen Höhen zu erstellen, ändern Sie das Argument „height_ratios“ in „gridspec_kw“.
# Create a figure and subplots with different height ratios f, (a0, a1, a2) = plt.subplots(3, 1, gridspec_kw={'height_ratios': [1, 1, 3]}) # Add plots to the subplots a0.plot(x, y) a1.plot(x, y) a2.plot(x, y) # Save the figure to PDF f.tight_layout() f.savefig('grid_figure.pdf')
Das obige ist der detaillierte Inhalt vonWie erstelle ich Unterplots mit unterschiedlichen Größen in Matplotlib?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!