在数据帧的“ str”和“ int”的实例之间不支持TypeError:“> =”

时间:2019-10-23 10:54:05

标签: python python-3.x dataframe

我正在Python 3中运行此代码。

fwds_margins = fwds_margins[(fwds_margins.index >= 10)]

它给了我这个错误:

TypeError: '>=' not supported between instances of 'str' and 'int'

之前曾在Python 2中运行过它,然后将其移至Python3并出现了此错误。

1 个答案:

答案 0 :(得分:1)

是否将fwds_margins.index转换为int?