Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我pandas在python中使用。我有几个按日期索引的系列,我想将它们连接到一个 DataFrame 中,但是由于缺少日期等,系列的长度不同。我希望匹配的日期匹配,但是缺少数据对其进行插值或仅使用前一个日期或类似的东西。最简单的方法是什么?
pandas
如果 Series 在 dictdata中,您只需执行以下操作:
data
frame = DataFrame(data)
这会将事情放入 DataFrame 并合并所有日期。如果要向前填充值,可以调用frame = frame.fillna(method='ffill').
frame = frame.fillna(method='ffill')