I will have an iterating process creating a set of similar, but not identical pandas series by index.
I want to append one to the other but overwrite where applicable. eg
Series One:
Index Value
Jan 3
Feb 5
Mar 4
Series Two:
Index Value
Mar 10
Apr 5
May 7
Desired Output:
Jan 3
Feb 5
Mar 10
Apr 5
May 7
Thanks in advance.