创建一个空DataFrame,并其中插入一行数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建一个空DataFrame,并其中插入一行数据相关的知识,希望对你有一定的参考价值。
参考技术A 转自百度知道, https://zhidao.baidu.com/question/1545412919630246187.html在pandas中创建一个空DataFrame的方法,类似于创建了一个空字典(dict)。
例如:empty = pandas.DataFrame("name":"","age":"","sex":"")
想要向empty中插入一行数据,可以用同样的方法。
(1)首先,要创建一个DataFrame。要注意,在这里需加入index属性,
new = pandas.DataFrame("name":"","age":"","sex":"",index=["0"])。
(2)然后,开始插值。ignore_index=True,可以帮助忽略index,自动递增。
empty.append(new,ignore_index=True)
(3)最重要的,赋值给empty.
empty = empty.append(new,ignore_index=True)
以上是关于创建一个空DataFrame,并其中插入一行数据的主要内容,如果未能解决你的问题,请参考以下文章
将 pandas Series 或 DataFrame 列插入现有 Excel 文件的第一个空列(使用 OpenPyXL?)