Strange lemmatization result in r, textstem package
问题 I would like to get lemma "dive" from all possible forms of the word using textstem package in R. But when I used textstem package in r, the basic form becomes a very strange result. library(textstem) words<-c("dived", "diving", "dive") lemmatize_strings(words, dictionary = lexicon::hash_lemmas) [1] "dive" "dive" "diva" Here, I do not want "dive" as a result from a word "dive", instead I need to lemmatize the word "dive" into "dive", so it can be counted as the same word with other forms