Come creare più grafici matplotlib su una singola figura


È possibile utilizzare la seguente sintassi per creare più grafici Matplotlib in un’unica figura:

 import matplotlib. pyplot as plt

#define grid of plots
fig, axs = plt. subplots (nrows= 2 , ncols= 1 )

#add data to plots
axs[0]. plot (variable1, variable2)
axs[1]. plot (variable3, variable4)

I seguenti esempi mostrano come utilizzare questa funzione nella pratica.

Esempio 1: impilare i percorsi verticalmente

Il codice seguente mostra come creare tre grafici Matplotlib, impilati verticalmente:

 #create some data
var1 = [1, 2, 3, 4, 5, 6]
var2 = [7, 13, 16, 18, 25, 19]
var3 = [29, 25, 20, 25, 20, 18]

#define grid of plots
fig, axs = plt. subplots (nrows= 3 , ncols= 1 )

#add title
fig. suptitle (' Plots Stacked Vertically ')

#add data to plots
axs[0]. plot (var1, var2)
axs[1]. plot (var1, var3)
axs[2]. plot (var2, var3)

Trame multiple impilate verticalmente in Matplotlib

Esempio 2: impilare i percorsi orizzontalmente

Il codice seguente mostra come creare tre grafici Matplotlib, impilati orizzontalmente:

 #create some data
var1 = [1, 2, 3, 4, 5, 6]
var2 = [7, 13, 16, 18, 25, 19]
var3 = [29, 25, 20, 25, 20, 18]

#define grid of plots
fig, axs = plt. subplots (nrows= 1 , ncols= 3 )

#add title
fig. suptitle (' Plots Stacked Horizontally ')

#add data to plots
axs[0]. plot (var1, var2)
axs[1]. plot (var1, var3)
axs[2]. plot (var2, var3) 

Più grafici Matplotlib impilati orizzontalmente

Esempio 3: creare una griglia di trama

Il codice seguente mostra come creare una griglia di trama Matplotlib:

 #create some data
var1 = [1, 2, 3, 4, 5, 6]
var2 = [7, 13, 16, 18, 25, 19]
var3 = [29, 25, 20, 25, 20, 18]
var4 = [4, 4, 6, 4, 7, 11]

#define grid of plots
fig, axs = plt. subplots (nrows= 2 , ncols= 2 )

#add title
fig. suptitle (' Grid of Plots ')

#add data to plots
axs[0, 0]. plot (var1, var2)
axs[0, 1]. plot (var1, var3)
axs[1, 0]. plot (var1, var4)
axs[1, 1]. plot (var3, var1)

Trame multiple in Matplotlib

Esempio 4: condividere gli assi tra le particelle

Puoi utilizzare gli argomenti sharex e sharey per assicurarti che più grafici utilizzino lo stesso asse x:

 #create some data
var1 = [1, 2, 3, 4, 5, 6]
var2 = [7, 13, 16, 18, 25, 19]
var3 = [29, 25, 20, 25, 20, 18]
var4 = [4, 4, 6, 4, 7, 11]

#define grid of plots
fig, axs = plt. subplots (nrows= 2 , ncols= 2 , sharex= True , sharey= True )

#add title
fig. suptitle (' Grid of Plots with Same Axes ')

#add data to plots
axs[0, 0]. plot (var1, var2)
axs[0, 1]. plot (var1, var3)
axs[1, 0]. plot (var1, var4)
axs[1, 1]. plot (var3, var1) 

Trame multiple in Matplotlib con assi condivisi

Risorse addizionali

Come regolare la spaziatura tra le sottotrame Matplotlib
Come cambiare il colore di sfondo in Matplotlib
Come aumentare la dimensione del grafico in Matplotlib

Aggiungi un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *