Closed
Description
On a DataFrame, we have the combineAdd
and combineMult
methods:
- they are a redundant, as they are defined as
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. - they have awkward (and non-pep8) names
- I assume they are not used a lot (I found 3 relevant references on StackOverflow for combineAdd (SO1, SO2 and SO2, which is more than I expected), and none for combineMult
Therefore, I was thinking we could maybe deprecate these (as kind of clean-up)?