我能够弄清楚如何在R中的hunspell
字典中添加自定义单词。但是,我不确定为什么它不用于拼写检查。这是我用的:
library(hunspell)
#adding custom words into hunspell dictionary
hunspell::dictionary(lang = "en_US", affix = NULL, add_words = "bing", cache = TRUE)
但是hunspell("bing")
仍然确定“ bing”不正确。
任何人以前都对此有经验吗?谢谢。
答案 0 :(得分:1)
dictionary()
函数返回一个可以使用的新字典。它不会更改默认行为或任何其他内容。你可以做
library(hunspell)
mydict <- dictionary(lang = "en_US", affix = NULL, add_words = "bing", cache = TRUE)
hunspell("bing", dict=mydict)