I concatenated two pandas series; the resulting series shows the index of the old series. How can I clear and reset the index from the old series?
E.g. The below example shows 0,1,2,0,1,2 as indices. I want 0,1,2,3,4,5 as indices.
>>> s1 = pd.Series([1, 2, 3])
>>> s2 = pd.Series([11, 12, 13])
>>> pd.concat([s1,s2])
0 1
1 2
2 3
0 11
1 12
2 13