在我看到的所有示例和答案中,如果需要在Pandas数据帧中添加空行,则全部使用:
ignore_index=True
如果我想保留当前索引,并将空行附加到具有给定索引的数据框,我该怎么办?
答案 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'] })