-
-
Notifications
You must be signed in to change notification settings - Fork 18k
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
API: deprecate combineAdd and combineMult methods? #10735
Comments
yeh they have a 'deprecated stuff' comment, but were not actually deprecated, sigh :( so let's deprecate and remove in next version. |
Ah, yes, you mean in the codebase (as in the docstring nothing is said about that ..) Will do a PR in a few days if no one complains |
+1 for deprecation. |
yes I think these are pretty old methods, and superfluous with |
Deprecated in 0.17.0. xref pandas-devgh-10735
Deprecated in 0.17.0. xref pandas-devgh-10735
Deprecated in 0.17.0. xref pandas-devgh-10735
Deprecated in 0.17.0. xref pandas-devgh-10735
On a DataFrame, we have the
combineAdd
andcombineMult
methods:self.add(other, fill_value=0.)
andself.mul(other, fill_value=1.)
(that is the actual implementation), which is also just cleaner to use IMHO.Therefore, I was thinking we could maybe deprecate these (as kind of clean-up)?
The text was updated successfully, but these errors were encountered: