gpt4 book ai didi

python - Pandas DataFrame 索引的自动递增选项

转载 作者:太空狗 更新时间:2023-10-29 18:19:24 29 4
gpt4 key购买 nike

有没有办法在添加新行时设置一个选项来自动增加 pandas.DataFrame 的索引,或者定义一个函数来管理新索引的创建?

最佳答案

append 时,您可以设置 ignore_index=True -ing:

In [1]: df = pd.DataFrame([[1,2],[3,4]])

In [2]: row = pd.Series([5,6])

In [3]: df.append(row, ignore_index=True)
Out[3]:
0 1
0 1 2
1 3 4
2 5 6

关于python - Pandas DataFrame 索引的自动递增选项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14778042/

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