What is Python's alternative to missing data imputation with mice in R? Imputation using median/mean seems pretty lame, I'm looking for other methods of imputation, something like randomForest.
Asked
Active
Viewed 9,288 times
7
-
You might want to take a look at [fancyimpute](https://pypi.python.org/pypi/fancyimpute) – chainD Jun 30 '17 at 03:19
2 Answers
1
You can use the library HERE. You are able to impute the values of your dataset using linear models with an Sklearn type interface.
jeweinb
- 11
- 2
-
1Instead of requesting contributions to your repository, you could edit the answer and include more details about the current features of the library. – tuomastik Jul 26 '17 at 03:51
1
Is this statsmodels MICE implementation an option? I also heard that an implementation of MICE is being merged into the development branch of scikit-learn but I can't find any info on that.
Bill
- 123
- 1
- 7