-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rename/Alias GeneralImputer
to MICE
#59
Comments
Hmmm... I am aware of the MICE package in R, but there the idea is that the nultiple imputations are "chained" along the whole statistical procedure. |
I'm not sure what you mean here; sorry 😅 Is this different from
If you're doing cross-validation or some other resampling strategy, shouldn't that give a good estimate of the model-based uncertainty? Although you could try something fancier (like a Bayesian bootstrap or other ensemble model). |
You may be interested in this new package: https://github.com/tom-metherell/Mice.jl Compared to the imputers in BetaML it provides pooling of the analysis you perform using the imputed values, that you don't have here (you just have the multiple imputations in a vector). Conversely, BetaML supports random forests that in my (limited) experience perform a better job than |
As in, BetaML just performs one imputation per missing data point, by randomly sampling a possible imputed value? |
No. Let's consider some tabular data with records as N rows and dimensions as C cols. |
The algorithm listed as
GeneralImputer
here is more widely-known as MICE (Multiple imputation by chained equations) in statistics. I'm not sure if the name used here is standard in ML, but the lack of a solid MICE implementation is a common complaint in the Julia statistics ecosystem, so I was very surprised to stumble across this pure-Julia implementation of MICE under a completely different name. Would it make sense to either rename or aliasGeneralImputer
to make this easier to discover?The text was updated successfully, but these errors were encountered: