-
-
Notifications
You must be signed in to change notification settings - Fork 2k
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
Support imputations with ndarray data #4439
Conversation
78e14ee
to
c183d11
Compare
c183d11
to
42cebae
Compare
LGTM if the pd.Series and pd.DataFrame are comprehensive enough |
42cebae
to
9c2203d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @michaelosthege, all good now! We can merge once the Pandas stuff is sorted out 😉
9c2203d
to
d8a5d3d
Compare
605b319
to
653efaf
Compare
Sorry about force-pushing all the time. Also I just noticed that my change to the tests did not show up, so I had to push yet another time 😭 This is probably the hardest low hanging fruit PR of all time. |
cb57680
to
8476aa4
Compare
8476aa4
to
6d5c78a
Compare
closes #4437
Imputations are realized with a numpy
MaskedArray
, which inherits fromndarray
. Therefore not onlyDataFrame
andSeries
, but alsondarray
can be the input.what are the (breaking) changes that this PR makes?noneconsider adding/updating relevant example notebooks