“So ersetzen Sie Null durch Null in Python” Code-Antworten

So ersetzen Sie Null durch Null in Python

data['amount']=data['amount'].replace(0, np.nan)
data['duration']=data['duration'].replace(0, np.nan)
Wide-eyed Whale

So ersetzen Sie Null durch Null in Python

df2[["Weight","Height","BootSize","SuitSize"]].astype(str).replace('0',np.nan)
Wide-eyed Whale

So ersetzen Sie Null durch Null in Python

df2.loc[df2['Weight'] == 0,'Weight'] = np.nan
df2.loc[df2['Height'] == 0,'Height'] = np.nan
df2.loc[df2['BootSize'] == '0','BootSize'] = np.nan
df2.loc[df2['SuitSize'] == '0','SuitSize'] = np.nan
Wide-eyed Whale

Ähnliche Antworten wie “So ersetzen Sie Null durch Null in Python”

Fragen ähnlich wie “So ersetzen Sie Null durch Null in Python”

Weitere verwandte Antworten zu “So ersetzen Sie Null durch Null in Python” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen