ttributeError: 'float' object has no attribute 'detach'
时间: 2023-11-04 09:00:42 浏览: 301
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
根据提供的引用内容,出现"AttributeError: 'float' object has no attribute 'decode'"错误是因为在使用jieba分词时,将float类型的数据传入了字符串处理函数。为了解决此问题,可以在读取Excel文件时,将数据类型改为字符串类型,即将".astype(str)"添加到读取代码中。
代码示例:
```
neg = pd.read_excel('Disney-jd-comment.xlsx', encoding='utf-8').astype(str)
```
阅读全文