Estimate missing values using multiple linear regressions
estimate_mlr(data, diff = 1e-05)
A matrix or data frame object. It should have variables as columns and observations as rows.
A number. It is the minimum difference between the estimated value and the value of the immediately before iteration. It works as an exit test for the iterations, smaller its value, the estimation will be more accurate, however it will take a longer time to be estimated. diff
is by default 1 e-05.
A list object with positions of missing values (positions), estimated values by multiple linear regression (est_values) and new data with estimated values (new_data).