在R中的hunspell词典中添加自定义单词的问题

时间:2019-05-08 15:13:17

标签: r dictionary hunspell

我能够弄清楚如何在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”不正确。

任何人以前都对此有经验吗?谢谢。

1 个答案:

答案 0 :(得分:1)

dictionary()函数返回一个可以使用的新字典。它不会更改默认行为或任何其他内容。你可以做

library(hunspell)
mydict <- dictionary(lang = "en_US", affix = NULL, add_words = "bing", cache = TRUE)
hunspell("bing", dict=mydict)