I am using qdap package for spell checking, but the default dictionary doesn't have many words such as cities,states, countries, or languages. I know I can add words to the dictionary like below
dict <- c(qdapDictionaries::GradyAugmented, "word1","word2","word3")
But I was wondering if there is a more efficient way to add about 1000 words to the dictionary.
Thanks