Open markvanderloo opened 7 years ago
Ratio imputation is based on a weighted single regressio regression Y = bX with weights 1/X. Would be nice to have a impute_ratio function. Also lm makes a different choice in selecting data under missingess than
impute_ratio
lm
b <- mean(Y,na.rm=TRUE)/mean(X,na.rm=TRUE)
Ratio imputation is based on a weighted single regressio regression Y = bX with weights 1/X. Would be nice to have a
impute_ratio
function. Alsolm
makes a different choice in selecting data under missingess than