As the title says, I am trying to use fillna in a for loop but it keeps on coming up with A value is trying to be set on a copy of a slice from a DataFrame error.
I want it so that each column that has a NaN value is replace by the mode for that column.
for title in object_null_columns:
value = dataset.loc[:,title].mode()
dataset.loc[:,title].fillna(value,inplace = True)
Above is what my current attempt is. Don't know if it makes sense but I'm really stuck. It does work but due to the code changing the values on a copy I can't use seaborn boxplot to find outliers
it appears as though you are using a pandas dataframe.
generally speaking, it is poor practice (red flag) using for loops, which is less efficient in usage than the built in methods.
In particular, a method like
fillna
might be used like this:The key advantage is that the (fillna) method operates on the entire dataframe or dataframe column without the need to iterate through all the rows that a for loop would do.
the docs here might also help or be a good starting point for you...
https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.fillna.html
There are quite a few helpful worked examples on this page too.