products['sentiment'] = products['rating'].apply(lambda rating : +1 if rating > 3 else -1)
每次都显示相同的错误
AttributeError:“浮动”对象没有属性“应用”
我正在使用python 3.7,请您帮忙解决此问题吗?
答案 0 :(得分:0)
看起来products['rating']
是float
;请尝试以下方法:
prodcuts['sentiment'] = 1 if products['rating'] > 3 else -1