For the first time, I am trying to work on a case study using python for continuous dataframe, which is the time series data of properties during the period 2006-2016
But I have missing values for the year 2015-16 in columns A,B,C,D and 2006-07 in E and F columns. I am trying to impute the values and fill the data.
I have tried MICE and Interpolation but am not sure if it's even correct or not. which method to apply and how to apply it in python? I have gone through links:
https://www.theanalysisfactor.com/seven-ways-to-make-up-data-common-methods-to-imputing-missing-data/ https://www.researchgate.net/post/What_is_a_reliable_method_of_dealing_with_missing_data_in_time_series_records
Should I be using forecasting method instead of imputation to fill the data?
Please help.