| python Programming Glossary: df3Remove rows with duplicate indices (Pandas DataFrame and TimeSeries) http://stackoverflow.com/questions/13035764/remove-rows-with-duplicate-indices-pandas-dataframe-and-timeseries  index index df2 pandas.DataFrame data data1 index index 3 df3 df1.append df2 df3  A B 2001 01 01 00 00 00 0 0 2001 01 01 01.. data data1 index index 3 df3 df1.append df2 df3  A B 2001 01 01 00 00 00 0 0 2001 01 01 01 00 00 1 1 2001 01.. 01 01 00 00 30 60 2001 01 01 02 00 00 40 70 And so I need df3 to evenutally become  A B 2001 01 01 00 00 00 20 50 2001 01.. 
 |