├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ └── R-CMD-check.yaml ├── .gitignore ├── .travis.yml ├── CONDUCT.md ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── NEWS.md ├── R ├── data.R ├── dictionary_edit.R ├── liwcalike.R └── quanteda.dictionaries-package.r ├── README.Rmd ├── README.md ├── appveyor.yml ├── codecov.yml ├── data ├── data_char_testphrases.rda ├── data_dictionary_LaverGarry.rda ├── data_dictionary_MFD.rda ├── data_dictionary_RID.rda ├── data_dictionary_uk2us.rda └── data_dictionary_us2uk.rda ├── man ├── data_char_testphrases.Rd ├── data_dictionary_LaverGarry.Rd ├── data_dictionary_MFD.Rd ├── data_dictionary_RID.Rd ├── data_dictionary_uk2us.Rd ├── dictionary_edit.Rd ├── liwcalike.Rd └── quanteda.dictionaries.Rd ├── sources ├── AFINN │ ├── AFINN-111.txt │ └── create-data_dictionary_AFINN.R ├── Hu-Liu │ ├── create_data_dictionary-HuLiu.R │ ├── negative-words-UTF8.txt │ └── positive-words.txt ├── Laver-Garry │ ├── Laver_and_Garry_2000.cat │ └── create-data_dictionary_LaverGarry.R ├── Loughran-McDonald │ ├── Loughran_and_McDonald_2014.cat │ └── create-data_dictionary_LoughranMcDonald.R ├── MFD │ ├── create-data_dictionary_MFD.R │ ├── mfd2.0.dic │ └── moral_foundations_dictionary.dic ├── RID │ ├── RID.CAT │ └── create-data_dictionary_RID.R ├── Rauh │ ├── Rauh_SentDictionaryGerman.Rdata │ ├── Rauh_SentDictionaryGerman_Negation.Rdata │ └── create-data_dictionary_Rauh.R ├── geninquirer │ ├── create-data_dictionary_geninquirer.R │ └── inquireraugmented.csv ├── sentiws │ ├── create-data_dictionary_sentiws.R │ ├── sentiws_v1.8c_negative.txt │ └── sentiws_v1.8c_positive.txt └── uk_us_english │ └── data_dict_usbr.csv ├── tests ├── .gitignore ├── testthat.R └── testthat │ ├── test-liwcalike.R │ └── test-using-tokens_replace.R └── vignettes ├── mystyle.css ├── quanteda.dictionaries_vignette.R ├── quanteda.dictionaries_vignette.Rmd └── quanteda.dictionaries_vignette.html /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/CONDUCT.md -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2018 2 | COPYRIGHT HOLDER: Your name goes here 3 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/R/data.R -------------------------------------------------------------------------------- /R/dictionary_edit.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/R/dictionary_edit.R -------------------------------------------------------------------------------- /R/liwcalike.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/R/liwcalike.R -------------------------------------------------------------------------------- /R/quanteda.dictionaries-package.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/R/quanteda.dictionaries-package.r -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/appveyor.yml -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- 1 | comment: false 2 | -------------------------------------------------------------------------------- /data/data_char_testphrases.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/data/data_char_testphrases.rda -------------------------------------------------------------------------------- /data/data_dictionary_LaverGarry.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/data/data_dictionary_LaverGarry.rda -------------------------------------------------------------------------------- /data/data_dictionary_MFD.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/data/data_dictionary_MFD.rda -------------------------------------------------------------------------------- /data/data_dictionary_RID.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/data/data_dictionary_RID.rda -------------------------------------------------------------------------------- /data/data_dictionary_uk2us.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/data/data_dictionary_uk2us.rda -------------------------------------------------------------------------------- /data/data_dictionary_us2uk.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/data/data_dictionary_us2uk.rda -------------------------------------------------------------------------------- /man/data_char_testphrases.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/man/data_char_testphrases.Rd -------------------------------------------------------------------------------- /man/data_dictionary_LaverGarry.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/man/data_dictionary_LaverGarry.Rd -------------------------------------------------------------------------------- /man/data_dictionary_MFD.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/man/data_dictionary_MFD.Rd -------------------------------------------------------------------------------- /man/data_dictionary_RID.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/man/data_dictionary_RID.Rd -------------------------------------------------------------------------------- /man/data_dictionary_uk2us.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/man/data_dictionary_uk2us.Rd -------------------------------------------------------------------------------- /man/dictionary_edit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/man/dictionary_edit.Rd -------------------------------------------------------------------------------- /man/liwcalike.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/man/liwcalike.Rd -------------------------------------------------------------------------------- /man/quanteda.dictionaries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/man/quanteda.dictionaries.Rd -------------------------------------------------------------------------------- /sources/AFINN/AFINN-111.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/AFINN/AFINN-111.txt -------------------------------------------------------------------------------- /sources/AFINN/create-data_dictionary_AFINN.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/AFINN/create-data_dictionary_AFINN.R -------------------------------------------------------------------------------- /sources/Hu-Liu/create_data_dictionary-HuLiu.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Hu-Liu/create_data_dictionary-HuLiu.R -------------------------------------------------------------------------------- /sources/Hu-Liu/negative-words-UTF8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Hu-Liu/negative-words-UTF8.txt -------------------------------------------------------------------------------- /sources/Hu-Liu/positive-words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Hu-Liu/positive-words.txt -------------------------------------------------------------------------------- /sources/Laver-Garry/Laver_and_Garry_2000.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Laver-Garry/Laver_and_Garry_2000.cat -------------------------------------------------------------------------------- /sources/Laver-Garry/create-data_dictionary_LaverGarry.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Laver-Garry/create-data_dictionary_LaverGarry.R -------------------------------------------------------------------------------- /sources/Loughran-McDonald/Loughran_and_McDonald_2014.cat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Loughran-McDonald/Loughran_and_McDonald_2014.cat -------------------------------------------------------------------------------- /sources/Loughran-McDonald/create-data_dictionary_LoughranMcDonald.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Loughran-McDonald/create-data_dictionary_LoughranMcDonald.R -------------------------------------------------------------------------------- /sources/MFD/create-data_dictionary_MFD.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/MFD/create-data_dictionary_MFD.R -------------------------------------------------------------------------------- /sources/MFD/mfd2.0.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/MFD/mfd2.0.dic -------------------------------------------------------------------------------- /sources/MFD/moral_foundations_dictionary.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/MFD/moral_foundations_dictionary.dic -------------------------------------------------------------------------------- /sources/RID/RID.CAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/RID/RID.CAT -------------------------------------------------------------------------------- /sources/RID/create-data_dictionary_RID.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/RID/create-data_dictionary_RID.R -------------------------------------------------------------------------------- /sources/Rauh/Rauh_SentDictionaryGerman.Rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Rauh/Rauh_SentDictionaryGerman.Rdata -------------------------------------------------------------------------------- /sources/Rauh/Rauh_SentDictionaryGerman_Negation.Rdata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Rauh/Rauh_SentDictionaryGerman_Negation.Rdata -------------------------------------------------------------------------------- /sources/Rauh/create-data_dictionary_Rauh.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/Rauh/create-data_dictionary_Rauh.R -------------------------------------------------------------------------------- /sources/geninquirer/create-data_dictionary_geninquirer.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/geninquirer/create-data_dictionary_geninquirer.R -------------------------------------------------------------------------------- /sources/geninquirer/inquireraugmented.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/geninquirer/inquireraugmented.csv -------------------------------------------------------------------------------- /sources/sentiws/create-data_dictionary_sentiws.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/sentiws/create-data_dictionary_sentiws.R -------------------------------------------------------------------------------- /sources/sentiws/sentiws_v1.8c_negative.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/sentiws/sentiws_v1.8c_negative.txt -------------------------------------------------------------------------------- /sources/sentiws/sentiws_v1.8c_positive.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/sentiws/sentiws_v1.8c_positive.txt -------------------------------------------------------------------------------- /sources/uk_us_english/data_dict_usbr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/sources/uk_us_english/data_dict_usbr.csv -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | data 3 | -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-liwcalike.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/tests/testthat/test-liwcalike.R -------------------------------------------------------------------------------- /tests/testthat/test-using-tokens_replace.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/tests/testthat/test-using-tokens_replace.R -------------------------------------------------------------------------------- /vignettes/mystyle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/vignettes/mystyle.css -------------------------------------------------------------------------------- /vignettes/quanteda.dictionaries_vignette.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/vignettes/quanteda.dictionaries_vignette.R -------------------------------------------------------------------------------- /vignettes/quanteda.dictionaries_vignette.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/vignettes/quanteda.dictionaries_vignette.Rmd -------------------------------------------------------------------------------- /vignettes/quanteda.dictionaries_vignette.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kbenoit/quanteda.dictionaries/HEAD/vignettes/quanteda.dictionaries_vignette.html --------------------------------------------------------------------------------