我正在使用此功能从在线资源中提取数据:
data,err = ek.get_data(['AAPL.O','NTR.TO','BIP_u.TO'],['TR.PriceClose.Date; TR.PriceClose],{'SDate':' 2016-03-03','EDate''2019-07-02','CURN':'CAD'})
当前数据如下: 我有两个具有相同列和日期索引的数据框:
Instrument Date Price Close
0 AAPL.O 2016-03-03 0.1
1 AAPL.O. 2016-03-04 0.09
2 AAPL.O 2016-03-05 0.1
...
2033 BIP_u.TO. 2019-07-01 0.89
2044 BIP_u.TO. 2019-07-02 0.09
但是我希望它看起来像这样:
Date AAPL.O NTR.TO BIP_u.TO
2016-03-03 0.1 0.02 0.04
2016-03-04 0.09 0.01 0.02
2016-03-05 0.1 0.02 0.04
...
2019-07-02 0.09 0.01 0.02
我该怎么做?