I've found the package Impute.jl but it's only able to use these simple methods:
- drop: remove missing.
- locf: last observation carried forward
- nocb: next observation carried backward
- interp: linear interpolation of values in vector
- fill: replace with a specific value or a function...
There seems not to exist any advanced "multiple imputation" method.
How can use more advanced methods when I have several variables?
Such as: fully conditional specification (mice), bayesian methods, random forest, multilevel, nested imputation, censored data, categorical data, survival data...
I don't mean creating my own code but finding any Julia package able to do it automatically. Other software do have it (R, Python, Stata, SAS…).