I\'ve got pandas data with some columns of text type. There are some NaN values along with these text columns. What I\'m trying to do is to impute those NaN\'s by skle
skle
You could try the following:
replace = df..value_counts().argmax() df[''].fillna(replace, inplace=True)