I am trying to plug the predicted missing values into original df (of course to the column with missing value). How could I do so?
The predicted missing values are basically stored in a list/series whose length is the number of missing values in the original df. The order in the list matches with the order that missing values appear in the df, I think, since I split the test_set from the df using nonull() at the missing series.
I have been trying pd.Series.fillna
, but that just allows one value to replace.