在pandas数据框的顶部添加一行

在pandas数据框的顶部添加一行,第1张

在pandas数据框的顶部添加一行

如果要经常进行 *** 作,那么就性能而言,首先将数据收集到列表中然后使用

pd.concat([],ignore_index=True)
(类似于@Serenity的解决方案)是有意义的:

演示:

data = []# always inserting new rows at the first position - last row will be always on top    data.insert(0, {'name': 'dean', 'age': 45, 'sex': 'male'})data.insert(0, {'name': 'joe', 'age': 33, 'sex': 'male'})#...pd.concat([pd.Dataframe(data), df], ignore_index=True)In [56]: pd.concat([pd.Dataframe(data), df], ignore_index=True)Out[56]:   age  name     sex0   33   joe    male1   45  dean    male2   30   jon    male3   25   sam    male4   18  jane  female5   26   bob    male

PS我不会把

.append()
pd.concat()
.sort_index()
过于频繁(每单排),因为它是相当昂贵。因此,想法是分批进行…



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5616877.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存