当前位置:   article > 正文

使用Python工具库SnowNLP对评论数据标注(二)_数据标注 python

数据标注 python

这一次用pandas处理csv文件
comments.csv
在这里插入图片描述

import pandas as pd
from snownlp import SnowNLP

df = pd.read_csv("C:\\Users\\zhour\\Documents\\comments.csv")#{'a': [1, 2, 3], 'b': [4, 5, 6], 'c': [7, 8, 9]}是个字典
emotions=[]
for txt in df['sentence']:
    s = SnowNLP(txt)
    emotions.append(s.sentiments)
df.insert(loc=1, column='emotion', value=emotions)  # 在第二列位置插入新列    

df.to_csv("C:\\Users\\zhour\\Documents\\commentsTag.csv",index=False, encoding='gbk')
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

commentsTag.csv
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/代码探险家/article/detail/806686
推荐阅读
相关标签
  

闽ICP备14008679号