我有两个单词向量。
Corpus<- c('animalada', 'fe', 'fernandez', 'ladrillo')
Lexicon<- c('animal', 'animalada', 'fe', 'fernandez', 'ladr', 'ladrillo')
我需要在 Lexicon 和 Corpus 之间做出尽可能好的匹配。我尝试了很多方法。这是其中之一。
library(stringr)
match<- paste(Lexicon,collapse= '|^') # I use the stemming method (snowball), so the words in Lexicon are root of words
test<- str_extrac_all (Corpus,match,simplify= T)
test
[,1]
[1,] "animal"
[2,] "fe"
[3,] "fe"
[4,] "ladr"
但是,比赛应该是:
[1,] "animalada"
[2,] "fe"
[3,] "fernandez"
[1,] "ladrillo"
相反,匹配的是我的词典中按字母顺序排列的第一个单词。顺便说一句,这些向量是我拥有的更大列表的样本。
我没有尝试使用 regex() 因为我不确定它是如何工作的。也许解决方案就是这样。
你能帮我解决这个问题吗?谢谢您的帮助。