gpt4 book ai didi

Python Pandas : add list to df of different len

转载 作者:太空宇宙 更新时间:2023-11-03 20:12:49 25 4
gpt4 key购买 nike

我有以下 len 52 列表:

cw = list(range(1,53))

我想将此列表添加到我的 len 104 的 df

我使用:

df.insert(0,"CW",cw, True)

结果是:

ValueError: Length of values does not match length of index

我希望将列表添加到 df 的前 52 行,然后再次从 1 开始添加到第二个 52 行。

最佳答案

您可以通过添加 +cw 来更改代码:

df.insert(0,"CW",cw+cw, True)

或添加* 2:

df.insert(0,"CW",cw * 2, True)

关于Python Pandas : add list to df of different len,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58623851/

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