在Pandas数据框

时间:2017-12-01 19:46:36

标签: python pandas indexing row

在我看到的所有示例和答案中,如果需要在Pandas数据帧中添加空行,则全部使用:

ignore_index=True

如果我想保留当前索引,并将空行附加到具有给定索引的数据框,我该怎么办?

1 个答案:

答案 0 :(得分:5)

我们使用reindex

df.reindex(df.index.values.tolist()+['Yourindex'])
Out[1479]: 
             A    B
0          one   Aa
1          one   Bb
2          two   Cc
Yourindex  NaN  NaN

数据输入

df = pd.DataFrame({'A' : ['one', 'one', 'two'] ,
                   'B' : ['Aa', 'Bb', 'Cc'] })