pandas replace nan with average code example
Example 1: fill missing values in column pandas with mean
df.fillna(df.mean(), inplace=True)
Example 2: how to replace nan with 0 in pandas
df['product']=df['product'].fillna(0)
df['context']=df['context'].fillna(0)
df
Example 3: python pandas replace nan with null
df.fillna('', inplace=True)