Come tracciare più serie da un pandas dataframe
È possibile utilizzare la seguente sintassi per tracciare più serie da un singolo DataFrame panda:
plt. plot (df[' series1 ']) plt. plot (df[' series2 ']) plt. plot (df[' series3 '])
Il seguente esempio passo passo mostra come utilizzare questa sintassi nella pratica.
Passaggio 1: creare i dati
Innanzitutto, creiamo un DataFrame panda che contenga le vendite totali effettuate da tre società in un periodo di 8 settimane:
import pandas as pd #create data df = pd. DataFrame ({' A ': [9, 12, 15, 14, 19, 23, 25, 29], ' B ': [5, 7, 7, 9, 12, 9, 9, 14], ' C ': [5, 4, 7, 13, 15, 15, 18, 31]}) #view data print(df) ABC 0 9 5 5 1 12 7 4 2 15 7 7 3 14 9 13 4 19 12 15 5 23 9 15 6 25 9 18 7 29 14 31
Passaggio 2: traccia più serie
Successivamente, tracciamo le vendite di ciascuna azienda sullo stesso grafico:
import matplotlib. pyplot as plt #plot each series plt. plot (df[' A ']) plt. plot (df[' B ']) plt. plot (df[' C ']) #displayplot plt. show ()
Passaggio 3: aggiungi una legenda ed etichette
Successivamente, aggiungiamo una legenda e alcune etichette degli assi per rendere la trama più facile da leggere:
#plot individual lines with custom colors and labels
plt. plot (df[' A '], label=' A ', color=' green ')
plt. plot (df[' B '], label=' B ', color=' steelblue ')
plt. plot (df[' C '], label=' C ', color=' purple ')
#add legend
plt. legend (title=' Group ')
#add axes labels and a title
plt. ylabel (' Sales ', fontsize= 14 )
plt. xlabel (' Time ', fontsize= 14 )
plt. title (' Sales by Group ', fontsize= 16 )
#displayplot
plt. show ()
Puoi trovare altri tutorial sui panda in questa pagina .