FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perfo

解决 FutureWarning: elementwise comparison failed;…res_values = method(rvalues)

用pandas做数据处理时,出现一个警告,百思不得其解,最终自己研究发现,一般出现这种警告,往往是在我们做数据处理时,当需要进行两个字段值进行比较时,而这两个字段值得类型不一样导致的。例如我的代码是这样写的,如下图:

FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perfo_第1张图片

其实调整来源的字段值的类型并不是字符串型,而我们硬生生的将它与字符串进行作比较,然后才导致了FutureWarning

我们这里做了验证,如下图:

FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perfo_第2张图片

我们可以看到调整来源的这个字段值类型是dtype: float64

所以这块就是导致FutureWarning的关键,应该做如下调整,将调整来源的这个字段值类型转换成字符串型即可解决该问题,将 res[‘调整来源’] 修改成 res[‘调整来源’].map(str) 即可解决FutureWarning问题

FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perfo_第3张图片

你可能感兴趣的:(pandas,Python,python,开发语言)