我想利用一个邮资数据框架来跟踪一些市场数据,我将在交易日下载现场。
我要说的是,我要标出AAPL和GOOG的价格。 首先,我建立了一个数据框架:
prices = DataFrame(columns = [ AAPL , GOOG ])
请允许我说,AAPL的第一份数据点当时为t1和555.0。 之后,几秒以图2计算,全球测验组的价格为430 000美元。
当然可以做到:
prices[ AAPL ][t1] = 555.0
prices[ GOOG ][t2] = 430.0
Is there an easy/fast way in pandas to accomplish this though besides pulling the index, modifying it, reindexing the dataframe and then inserting each scalar price as it comes in?