Hi I have a list( tranforming a numpy array to list) that contains a number of values. I try to use it to replace all of the NaN values that I have in a pandas column but I get the following error:
TypeError: "value" parameter must be a scalar or dict, but you passed a "list"
The line of code I use to do the fill is
df.column.fillna(list,inplace=True)
Any help highly appreciated