fill missing categorical values in dataframe python using mode code example
Example: mode imputation in python
df['country'].fillna(df['country'].mode()[0], inplace = True)
df['country'].fillna(df['country'].mode()[0], inplace = True)