标签: python python-3.x pandas series
我有奇怪格式的股价时间序列数据,所以无法对其进行计算。
我在熊猫系列中有这些值,值的格式如下:
1,456.52 1,222.50 855.90
当我要计算收益或其他东西时,我总是会遇到类型错误
TypeError:/的不支持的操作数类型:“ str”和“ float”
我已经尝试过replace,to_numeric和float。不幸的是,对我没有任何帮助。
replace
to_numeric
float
如何将它们转换为浮点数或其他有用的内容?