-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
DataFrame.interpolate(axis=1, method="time", inplace=True) #9687
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
Comments
hmm, prob needs some more testing. pull-requests are welcome on this. |
The method parameter doesn't matter. All inplace ops fail w/ axis=1. |
@jreback am I right that In [16]: df.T.T is df
Out[16]: False If so, then my implementation w/ inplace and |
you need to do something like this (as you are just overwriting the reference)
|
Looks to be fixed on master. Could use a test. |
In pandas 0.15.2, DataFrame.interpolate( ... ) doesn't work with the keyword combination axis=1, method="time", inplace=True. It just returns the original DataFrame.
The text was updated successfully, but these errors were encountered: