我有2个数据框,列相同但日期时间索引不同。我想重新对其中一个进行重新采样,以使用另一个的索引,并在另一个没有数据的索引中的任何日期使用前一个填充数据。
import pandas as pd
import numpy as np
from datetime import datetime as dt
a_values = np.random.randn(4, 4)
a_index = [dt(2012, 3, 16), dt(2012, 3, 19), dt(2012, 3, 20), dt(2012, 3, 21)]
a = pd.DataFrame(data=a_values, index=a_index)
b_values = np.trunc(np.random.randn(3, 4) * 1000)
b_index = [dt(2012, 3, 16), dt(2012, 3, 19), dt(2012, 3, 21)]
b = pd.DataFrame(data=b_values, index=b_index)
c_insert = a.ix['2012-03-20']
c = b.append(c_insert).sort()
c.ix['2012-03-20'] = c.ix['2012-03-19']
'a'表示其索引我想用作重采样引用的数据帧。 'b'表示我想重新采样和转发填充数据的数据帧。 'c'表示我想要的结果。
请注意,'b'缺少'a'中存在的'2012-03-20'索引。 'c'填充索引'2012-03-20'的列,其中'b'列中的数据为索引'2012-03-19'
pandas是否具备执行此操作的功能。
提前致谢。
PIR
答案 0 :(得分:9)
要按参考索引重新取样,请使用reindex
。
In [11]: b.reindex(a.index, method='ffill')
Out[11]:
0 1 2 3
2012-03-16 -926 -625 736 457
2012-03-19 -1024 742 732 -1020
2012-03-20 -1024 742 732 -1020
2012-03-21 1090 -1163 1652 -94