I have the data frame, with multiple index, but i want to melt preserving its index.
This is what i have:
-Summarized DF:
Attributes Adj Close|Close
Symbols AALR3.SA | ABCB4.SA
Date
2019-12-09| 17.862261|17.999647
2019-12-10| 17.852343|18.240801
2019-12-11| 18.001112|18.298676
-The code that i've made to get this df:
Brazilian_stock_list1 = ['AALR3.SA','ABCB4.SA']
brazilian_stocks1 = pdr.get_data_yahoo(Brazilian_stock_list1, start=start_date, end=end_date)
razilian_stocks1.head()
-What i've tried, but it deleted index "Date":
pd.melt(brazilian_stocks1, value_vars=teste.columns.tolist())
-And finally, this is what i need:
date Attributes Symbols value
2019-12-09 Adj Close AALR3.SA 17.862.261
2019-12-10 Adj Close AALR3.SA 17.852.343
2019-12-11 Adj Close AALR3.SA 18.001.112
2019-12-12 Adj Close AALR3.SA 18.229.223
Thanks in advance for any help you provide me.
Let's try
stack
thenreset_index
:Output: