Come aggiungere righe a un dataframe pandas (con esempi)


Puoi utilizzare la funzione df.loc() per aggiungere una riga alla fine di un DataFrame panda:

 #add row to end of DataFrame
df. loc [ len (df. index )] = [value1, value2, value3, ...]

E puoi utilizzare la funzione df.append() per aggiungere più righe da un DataFrame esistente alla fine di un altro DataFrame:

 #append rows of df2 to end of existing DataFrame
df = df. append (df2, ignore_index = True )

I seguenti esempi mostrano come utilizzare queste funzioni nella pratica.

Esempio 1: aggiungi una riga a Pandas DataFrame

Il codice seguente mostra come aggiungere una riga alla fine di un DataFrame panda:

 import pandas as pd

#createDataFrame
df = pd. DataFrame ({' points ': [10, 12, 12, 14, 13, 18],
                   ' rebounds ': [7, 7, 8, 13, 7, 4],
                   ' assists ': [11, 8, 10, 6, 6, 5]})

#view DataFrame
df

	points rebound assists
0 10 7 11
1 12 7 8
2 12 8 10
3 14 13 6
4 13 7 6
5 18 4 5

#add new row to end of DataFrame
df. loc [ len (df. index )] = [20, 7, 5]

#view updated DataFrame
df

        points rebound assists
0 10 7 11
1 12 7 8
2 12 8 10
3 14 13 6
4 13 7 6
5 18 4 5
6 20 7 5

Esempio 2: aggiungere più righe a Pandas DataFrame

Il codice seguente mostra come aggiungere più righe da un DataFrame esistente alla fine di un altro DataFrame:

 import pandas as pd

#createDataFrame
df = pd. DataFrame ({' points ': [10, 12, 12, 14, 13, 18],
                   ' rebounds ': [7, 7, 8, 13, 7, 4],
                   ' assists ': [11, 8, 10, 6, 6, 5]})

#view DataFrame
df

	points rebound assists
0 10 7 11
1 12 7 8
2 12 8 10
3 14 13 6
4 13 7 6
5 18 4 5

#define second DataFrame
df2 = pd. DataFrame ({' points ': [21, 25, 26],
                    ' rebounds ': [7, 7, 13],
                    ' assists ': [11, 3, 3]})

#add new row to end of DataFrame
df = df. append (df2, ignore_index = True )

#view updated DataFrame
df

        points rebound assists
0 10 7 11
1 12 7 8
2 12 8 10
3 14 13 6
4 13 7 6
5 18 4 5
6 21 7 11
7 25 7 3
8 26 13 3

Tieni presente che entrambi i DataFrame devono avere gli stessi nomi di colonna per poter aggiungere correttamente le righe da un DataFrame alla fine di un altro.

Risorse addizionali

Come aggiungere una colonna a un DataFrame Pandas
Come ottenere i numeri di riga in un Pandas DataFrame
Come convertire un elenco in DataFrame in linea in Pandas

Aggiungi un commento

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