我有一个数据框,当我尝试计算 pct_change() 时,它显示了一个错误 TypeError: unsupported operand type(s) for /: 'str' and 'float'
。然后我尝试将类型转换为 float,它向我显示ValueError: could not convert string to float
:
unemployment_df['Unemployment_pct_change'] = unemployment_df['Unemployment_Value'].pct_change() unemployment_df['Unemployment_Value']=unemployment_df['Unemployment_Value'].astype(float)
但不知道弦在哪里,是什么弦?所以我试图找到单元格索引,其中单元格值是字符串而不是数字。怎么做?谢谢
红糖糍粑
呼唤远方
相关分类