Skip to content

Commit

Permalink
Update readme.md with iterativeimputer/sklearn info
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyf committed Jul 13, 2019
1 parent 65f2db5 commit 30f7b0e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@

A variety of matrix completion and imputation algorithms implemented in Python 3.6.

NOTE: This project is in "bare maintenance" mode. That means we are not planning on adding more imputation algorithms or features (but might if we get inspired). Please do report bugs, and we'll try to fix them. Also, we are happy to take pull requests for more algorithms and/or features.

NOTE: `IterativeImputer` started its life as a `fancyimpute` original, but was then merged into `scikit-learn` and we deleted it from `fancyimpute` in favor of the better-tested `sklearn` version. As a convenience, you can still `from fancyimpute import IterativeImputer`, but under the hood it's just doing `from sklearn.impute import IterativeImputer`. That means if you update `scikit-learn` in the future, you may also change the behavior of `IterativeImputer`.


## Usage

```python
Expand Down

0 comments on commit 30f7b0e

Please sign in to comment.