You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
One capability that pandas has, I’ve been thinking for a while, is the operator overloading to support convenient basic calculations between two series, such as +, -, *, /. [We might use this to conveniently] create a MultipleSeries from multiple Series objects like ms = ts1 & ts2 & ts3 (combining three Series into a MultipleSeries) and ms2 = ms1 - ts (removing a Series from a MultipleSeries object).
(edited by JEG)
The text was updated successfully, but these errors were encountered:
I think we are done with the code+test for those, but not the docstrings. For instance, I can't tell the difference between & and +, and I was not able to make the - method work with the ms -label syntax. Examples would be great! Thanks
Dixit @fzhu2e :
The text was updated successfully, but these errors were encountered: