“Python fillna mit Modus” Code-Antworten

Füllen Sie NA mit Modus und mittleren Python

cateogry_columns=df.select_dtypes(include=['object']).columns.tolist()
integer_columns=df.select_dtypes(include=['int64','float64']).columns.tolist()

for column in df:
    if df[column].isnull().any():
        if(column in cateogry_columns):
            df[column]=df[column].fillna(df[column].mode()[0])
        else:
            df[column]=df[column].fillna(df[column].mean)
Drab Dugong

Python fillna mit Modus

data['Native Country'] = data['Native Country'].fillna(data['Native Country'].mode()[0])
Energetic Eel

Ähnliche Antworten wie “Python fillna mit Modus”

Fragen ähnlich wie “Python fillna mit Modus”

Weitere verwandte Antworten zu “Python fillna mit Modus” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen