gpt4 book ai didi

python - pandas to_numeric 产生值错误

转载 作者:太空宇宙 更新时间:2023-11-03 15:52:07 26 4
gpt4 key购买 nike

我无法让 to_numeric 在下面的代码中工作:

tt = ['123.00','10,614,163,994.00']
pd.to_numeric(tt)

我收到以下错误:

ValueError: Unable to parse string "10,614,163,994.00" at position 1

请帮忙。

最佳答案

to_numeric 无法处理 , 作为千、百万、.. 的分隔符

您应该通过类似tt = [n.replace(',','') for n in tt]

的方式预处理 tt

关于python - pandas to_numeric 产生值错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45999581/

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