Answers for "replace nan with mean"

5

how to fill missing values dataframe with mean

sub2['income'].fillna((sub2['income'].mean()), inplace=True)
Posted by: Guest on July-22-2020
4

replace nan with mean

df.fillna(df.mean())
Posted by: Guest on April-13-2020
0

replace nan

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

Code answers related to "replace nan with mean"

Python Answers by Framework

Browse Popular Code Answers by Language