Come sostituire i valori in un dataframe pandas (con esempi)
Spesso potresti voler sostituire i valori in una o più colonne di un DataFrame panda.
Fortunatamente, questo è facile da fare utilizzando la funzione .replace() .
Questo tutorial fornisce diversi esempi di utilizzo pratico di questa funzione sul seguente DataFrame:
import pandas as pd #createDataFrame df = pd. DataFrame ({'team': ['A', 'A', 'B', 'B', 'B', 'C', 'C'], 'division':['E', 'W', 'E', 'E', 'W', 'W', 'E'], 'rebounds': [11, 8, 7, 6, 6, 5, 12]}) #view DataFrame print (df) team division rebounds 0 AE 11 1 AW 8 2 BE 7 3 BE 6 4 BW 6 5 CW 5 6 CE 12
Esempio 1: sostituire un singolo valore in un intero DataFrame
Il codice seguente mostra come sostituire un singolo valore in un intero DataFrame panda:
#replace 'E' with 'East' df = df. replace ([' E '],' East ') #view DataFrame print (df) team division rebounds 0 A East 11 1 AW 8 2 B East 7 3 B East 6 4 BW 6 5 CW 5 6 C East 12
Esempio 2: sostituisci più valori in un intero DataFrame
Il codice seguente mostra come sostituire più valori in un intero DataFrame panda:
#replace 'E' with 'East' and 'W' with 'West' df = df. replace ([' E ',' W '],[' East ',' West ']) #view DataFrame print (df) team division rebounds 0 A East 11 1 A West 8 2 B East 7 3 B East 6 4 B West 6 5 C West 5 6 C East 12
Esempio 3: sostituisci un singolo valore in una singola colonna
Il codice seguente mostra come sostituire un singolo valore in una singola colonna:
#replace 6 with 0 in rebounds column df[' rebounds '] = df[' rebounds ']. replace (6, 0) #view DataFrame print (df) team division rebounds 0 A E 11 1 A W 8 2 B E 7 3 B E 0 4 B W 0 5 C W 5 6 C E 12
Esempio 4: sostituisci più valori in una singola colonna
Il codice seguente mostra come sostituire più valori in una singola colonna:
#replace 6, 11, and 8 with 0, 1 and 2 in rebounds column df[' rebounds '] = df[' rebounds ']. replace ([6, 11, 8], [0, 1, 2]) #view DataFrame print (df) team division rebounds 0 A E 1 1 A W 2 2 B E 7 3 B E 0 4 B W 0 5 C W 5 6 C E 12
Risorse addizionali
I seguenti tutorial spiegano come eseguire altre attività comuni nei panda:
Come sostituire i valori NaN con zeri in Panda
Come sostituire le stringhe vuote con NaN in Pandas
Come sostituire i valori nella colonna in base alle condizioni in Panda