I am dealing with data sets with missing data and should be able to fill forward, backward and blanks. So, for example, if I have data from January 1, 2000 to December 31, 2010, and some days are missing, when a user requests a time interval that starts earlier, ends after, or covers missing data points, I need to "fill in" these missing values.
Is there a suitable term to refer to this concept of data filling? Imputation is one term, I don’t know if it is a “term” for it.
I assume that there are many algorithms and methodologies to fill in the missing data (use the last measured values, using the average / average / moving average, etc. between two known numbers, etc.
Does anyone know the correct term for this problem, any online resources on this topic or, ideally, refer to the open source versions of some algorithms (preferably C #, but any language will be useful)
tbone source share