Answers for "if found nan replace by blank"

3

pandas replace empty string with nan

df = df.replace(r'^s*$', np.NaN, regex=True)
Posted by: Guest on June-09-2020
0

replace nan

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

Python Answers by Framework

Browse Popular Code Answers by Language