gpt4 book ai didi

python - 将值插入到数据框列

转载 作者:行者123 更新时间:2023-12-02 00:59:39 26 4
gpt4 key购买 nike

我有一个 Pandas 数据框

0      1      2    3
0 173.0 147.0 161 162.0
1 NaN NaN 23 NaN
我只想为一列添加值,例如
           3
0 161
1 23
2 181
但是不能接受 loc的方法和 iloc .因为文件可以包含任意长度的列,我不知道 lociloc .因此只想为列添加值。提前致谢。

最佳答案

我相信需要setting with enlargement :

df.loc[len(df.index), 2] = 181
print (df)
0 1 2 3
0 173.0 147.0 161.0 162.0
1 NaN NaN 23.0 NaN
2 NaN NaN 181.0 NaN

关于python - 将值插入到数据框列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51493618/

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