7

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.

2 Answers2

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
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
  • 163
  • 1
  • 8