【发布时间】:2019-07-31 11:25:09
【问题描述】:
拥有一个带有文本的数据框
df = data.frame(id=c(1,2), text = c("My best friend John works and Google", "However he would like to work at Amazon as he likes to use python and stay at Canada")
无需任何预处理
如何提取名称实体识别,如this
示例结果词
dfresults = data.frame(id=c(1,2), ner_words = c("John, Google", "Amazon, python, Canada")
【问题讨论】: