gpt4 book ai didi

python - 在 Pandas 数据框中添加带有索引的空行

转载 作者:行者123 更新时间:2023-11-28 21:38:52 26 4
gpt4 key购买 nike

在我看到的所有示例和答案中,如果需要在 Pandas 数据框中添加一个空行,都使用:

ignore_index=True

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

最佳答案

我们使用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'] })

关于python - 在 Pandas 数据框中添加带有索引的空行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47600468/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com