Internal functions to import dictionary files
Internal functions to import dictionary files in a variety of formats
read_dict_lexicoder
imports Lexicoder files in the .lc3
format.
read_dict_wordstat
imports WordStat files in the
.cat
format.
read_dict_liwc
imports LIWC dictionary files in the
.dic
format.
read_dict_yoshikoder
imports Yoshikoder files in the
.ykd
format.
read_dict_lexicoder(path) read_dict_wordstat(path, encoding = "utf-8") read_dict_liwc(path, encoding = "utf-8") read_dict_yoshikoder(path)
path |
the full path and filename of the dictionary file to be read |
encoding |
the encoding of the file to be imported |
a quanteda dictionary object
dict <- quanteda:::read_dict_lexicoder( system.file("extdata", "LSD2015.lc3", package = "quanteda") ) ## Not run: dict <- quanteda:::read_dict_wordstat(system.file("extdata", "RID.cat", package = "quanteda")) # dict <- read_dict_wordstat("/home/kohei/Documents/Dictionary/LaverGarry.txt", "utf-8") # dict <- read_dict_wordstat("/home/kohei/Documents/Dictionary/Wordstat/ROGET.cat", "utf-8") # dict <- read_dict_wordstat("/home/kohei/Documents/Dictionary/Wordstat/WordStat Sentiments.cat", # encoding = "iso-8859-1") ## End(Not run) dict <- quanteda:::read_dict_liwc( system.file("extdata", "moral_foundations_dictionary.dic", package = "quanteda") ) dict <- quanteda:::read_dict_yoshikoder(system.file("extdata", "laver_garry.ykd", package = "quanteda"))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.