Answers for "how to replace unknown with nan in python"

1

replace error with nan pandas

df['workclass'].replace('?', np.NaN)
Posted by: Guest on April-08-2021
0

replace nan

df['salary'] = df['salary'].fillna(df['salary'].mode()[0])
Posted by: Guest on July-13-2021

Code answers related to "how to replace unknown with nan in python"

Python Answers by Framework

Browse Popular Code Answers by Language