if I have one dataframe and series like these
bi sm
0 A 0 a
1 B 1 b
2 C 2 C
I can concatenate like this
dfA['sm'] = dfB
big sm
0 A a
1 B b
2 C c
However I have one dataframe and seriese, each has the different index but same row numbers.
bi sm
2017-11-04 A 0 a
2017-11-03 B 1 b
2017-11-02 C 2 C
I would like to concatenate these two into this
bi sm
2017-11-04 A a
2017-11-03 B b
2017-11-02 C C
How can I make it???