├── .Rbuildignore ├── .github ├── .gitignore └── workflows │ ├── R-CMD-check.yaml │ └── test-coverage.yaml ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── data-documentation.R ├── quanteda.textmodels-package.R ├── textmodel-methods.R ├── textmodel_affinity.R ├── textmodel_ca.R ├── textmodel_lr.R ├── textmodel_lsa.R ├── textmodel_nb.R ├── textmodel_svmlin.R ├── textmodel_wordfish.R ├── textmodel_wordscores.R ├── textplot_influence.R └── utils.R ├── README.Rmd ├── README.md ├── codecov.yml ├── cran-comments.md ├── data ├── data_corpus_EPcoaldebate.rda ├── data_corpus_dailnoconf1991.rda ├── data_corpus_irishbudget2010.rda └── data_corpus_moviereviews.rda ├── doc ├── textmodel_performance.R ├── textmodel_performance.Rmd └── textmodel_performance.html ├── docs ├── 404.html ├── articles │ ├── index.html │ ├── textmodel_performance.html │ └── textmodel_performance_files │ │ └── header-attrs-2.6 │ │ └── header-attrs.js ├── authors.html ├── bootstrap-toc.css ├── bootstrap-toc.js ├── docsearch.css ├── docsearch.js ├── index.html ├── link.svg ├── news │ └── index.html ├── pkgdown.css ├── pkgdown.js ├── pkgdown.yml ├── reference │ ├── Rplot001.png │ ├── affinity.html │ ├── as.coefficients_textmodel.html │ ├── as.matrix.csr.dfm.html │ ├── as.statistics_textmodel.html │ ├── as.summary.textmodel.html │ ├── coef.textmodel_ca.html │ ├── data_corpus_EPcoaldebate.html │ ├── data_corpus_dailnoconf1991.html │ ├── data_corpus_irishbudget2010.html │ ├── data_corpus_moviereviews.html │ ├── data_dfm_lbgexample.html │ ├── force_conformance.html │ ├── friendly_class_undefined_message.html │ ├── index.html │ ├── influence.predict.textmodel_affinity.html │ ├── message_error.html │ ├── predict.textmodel_affinity.html │ ├── predict.textmodel_lr.html │ ├── predict.textmodel_nb.html │ ├── predict.textmodel_svm.html │ ├── predict.textmodel_svmlin.html │ ├── predict.textmodel_wordfish.html │ ├── predict.textmodel_wordscores.html │ ├── print.coefficients_textmodel.html │ ├── print.statistics_textmodel.html │ ├── print.summary.textmodel.html │ ├── print.textmodel_wordfish.html │ ├── summary.textmodel_lr.html │ ├── summary.textmodel_nb.html │ ├── summary.textmodel_svm.html │ ├── summary.textmodel_svmlin.html │ ├── summary.textmodel_wordfish.html │ ├── textmodel_affinity-internal.html │ ├── textmodel_affinity.html │ ├── textmodel_ca.html │ ├── textmodel_lr.html │ ├── textmodel_lsa-postestimation.html │ ├── textmodel_lsa.html │ ├── textmodel_nb.html │ ├── textmodel_svm.html │ ├── textmodel_svmlin.html │ ├── textmodel_wordfish.html │ ├── textmodel_wordscores.html │ ├── textmodels.html │ ├── textplot_influence-1.png │ ├── textplot_influence.html │ └── unused_dots.html └── sitemap.xml ├── inst └── WORDLIST ├── man ├── affinity.Rd ├── as.coefficients_textmodel.Rd ├── as.statistics_textmodel.Rd ├── as.summary.textmodel.Rd ├── coef.textmodel_ca.Rd ├── data_corpus_EPcoaldebate.Rd ├── data_corpus_dailnoconf1991.Rd ├── data_corpus_irishbudget2010.Rd ├── data_corpus_moviereviews.Rd ├── force_conformance.Rd ├── influence.predict.textmodel_affinity.Rd ├── predict.textmodel_affinity.Rd ├── predict.textmodel_lr.Rd ├── predict.textmodel_nb.Rd ├── predict.textmodel_svmlin.Rd ├── predict.textmodel_wordfish.Rd ├── predict.textmodel_wordscores.Rd ├── print.coefficients_textmodel.Rd ├── print.statistics_textmodel.Rd ├── print.summary.textmodel.Rd ├── print.textmodel_wordfish.Rd ├── summary.textmodel_lr.Rd ├── summary.textmodel_nb.Rd ├── summary.textmodel_svmlin.Rd ├── summary.textmodel_wordfish.Rd ├── textmodel_affinity-internal.Rd ├── textmodel_affinity.Rd ├── textmodel_ca.Rd ├── textmodel_lr.Rd ├── textmodel_lsa-postestimation.Rd ├── textmodel_lsa.Rd ├── textmodel_nb.Rd ├── textmodel_svmlin.Rd ├── textmodel_wordfish.Rd ├── textmodel_wordscores.Rd ├── textmodels.Rd └── textplot_influence.Rd ├── src ├── Makevars ├── Makevars.win ├── RcppExports.cpp ├── ca.cpp ├── ssl.cpp ├── ssl.h ├── svmlin.cpp └── wordfish.cpp ├── tests ├── data-creation │ ├── EPcoaldebate │ │ ├── data_EPcoaldebate.zip │ │ └── metadata_EPcoaldebate.xlsx │ ├── create_data_corpus_EPcoaldebate.R │ ├── create_data_corpus_irishbudget2010.R │ ├── create_data_corpus_moviereviews.R │ ├── create_data_dailnoconf.R │ ├── dailnoconf │ │ ├── Ahearn_FG.txt │ │ ├── AhernD_FF.txt │ │ ├── Barry_FG.txt │ │ ├── Blaney_FF_Indep.txt │ │ ├── Boylan_FG.txt │ │ ├── Brennan_FF_Min.txt │ │ ├── Browne_FG.txt │ │ ├── BrutonJ_FG_Leader.txt │ │ ├── BrutonR_FG.txt │ │ ├── Burke_FF_Min.txt │ │ ├── Collins_FF_Min.txt │ │ ├── Connaughton_FG.txt │ │ ├── Cowen_FF.txt │ │ ├── Creed_FG.txt │ │ ├── Cullimore_FF.txt │ │ ├── Currie_FG.txt │ │ ├── Daly_FF_Min.txt │ │ ├── Davern_FF.txt │ │ ├── Deasy_FG.txt │ │ ├── Deenihan_FG.txt │ │ ├── Durkan_FG.txt │ │ ├── Ferris_Lab.txt │ │ ├── Finucane_FG.txt │ │ ├── FitzGerald_FG.txt │ │ ├── Flaherty_FG.txt │ │ ├── Flynn_FF_Min.txt │ │ ├── Garland_Green_Leader.txt │ │ ├── Gilmore_DL.txt │ │ ├── Haughey_FF_Taois.txt │ │ ├── HigginsJ_FG.txt │ │ ├── HigginsMD_Lab.txt │ │ ├── Hillery_FF.txt │ │ ├── Howlin_Lab.txt │ │ ├── Kenny_FG.txt │ │ ├── Lenihan_FF.txt │ │ ├── Leyden_FF_JMin.txt │ │ ├── McDaid_FF.txt │ │ ├── Nolan_FF.txt │ │ ├── Noonan_FG.txt │ │ ├── ODonoghue_FF.txt │ │ ├── OHanlon_FF_Min.txt │ │ ├── OKennedy_FF_Min.txt │ │ ├── OMalley_PD_Leader.txt │ │ ├── ORourke_FF_Min.txt │ │ ├── OShea_Lab.txt │ │ ├── Owen_FG.txt │ │ ├── Quinn_Lab.txt │ │ ├── Rabbitte_DL.txt │ │ ├── ReynoldsG_FG.txt │ │ ├── Reynolds_FF_Min.txt │ │ ├── Roche_FF.txt │ │ ├── Spring_Lab_Leader.txt │ │ ├── Stagg_Lab.txt │ │ ├── TaylorQuinn_FG.txt │ │ ├── Wilson_FF_Tan.txt │ │ ├── Woods_FF_Min.txt │ │ ├── Yates_FG.txt │ │ └── deRossa_DL_Leader.txt │ └── removed │ │ ├── test-textmodel_svm.R │ │ └── textmodel_svm.R ├── spelling.R ├── testthat.R └── testthat │ ├── test-data.R │ ├── test-default-methods.R │ ├── test-textmodel_affinity.R │ ├── test-textmodel_ca.R │ ├── test-textmodel_lr.R │ ├── test-textmodel_lsa.R │ ├── test-textmodel_nb.R │ ├── test-textmodel_svmlin.R │ ├── test-textmodel_wordfish.R │ ├── test-textmodel_wordscores.R │ └── test-utils.R └── vignettes ├── .gitignore └── textmodel_performance.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.github/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | -------------------------------------------------------------------------------- /.github/workflows/R-CMD-check.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/.github/workflows/R-CMD-check.yaml -------------------------------------------------------------------------------- /.github/workflows/test-coverage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/.github/workflows/test-coverage.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/data-documentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/data-documentation.R -------------------------------------------------------------------------------- /R/quanteda.textmodels-package.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/quanteda.textmodels-package.R -------------------------------------------------------------------------------- /R/textmodel-methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textmodel-methods.R -------------------------------------------------------------------------------- /R/textmodel_affinity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textmodel_affinity.R -------------------------------------------------------------------------------- /R/textmodel_ca.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textmodel_ca.R -------------------------------------------------------------------------------- /R/textmodel_lr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textmodel_lr.R -------------------------------------------------------------------------------- /R/textmodel_lsa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textmodel_lsa.R -------------------------------------------------------------------------------- /R/textmodel_nb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textmodel_nb.R -------------------------------------------------------------------------------- /R/textmodel_svmlin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textmodel_svmlin.R -------------------------------------------------------------------------------- /R/textmodel_wordfish.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textmodel_wordfish.R -------------------------------------------------------------------------------- /R/textmodel_wordscores.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textmodel_wordscores.R -------------------------------------------------------------------------------- /R/textplot_influence.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/textplot_influence.R -------------------------------------------------------------------------------- /R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/R/utils.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/codecov.yml -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/data_corpus_EPcoaldebate.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/data/data_corpus_EPcoaldebate.rda -------------------------------------------------------------------------------- /data/data_corpus_dailnoconf1991.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/data/data_corpus_dailnoconf1991.rda -------------------------------------------------------------------------------- /data/data_corpus_irishbudget2010.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/data/data_corpus_irishbudget2010.rda -------------------------------------------------------------------------------- /data/data_corpus_moviereviews.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/data/data_corpus_moviereviews.rda -------------------------------------------------------------------------------- /doc/textmodel_performance.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/doc/textmodel_performance.R -------------------------------------------------------------------------------- /doc/textmodel_performance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/doc/textmodel_performance.Rmd -------------------------------------------------------------------------------- /doc/textmodel_performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/doc/textmodel_performance.html -------------------------------------------------------------------------------- /docs/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/404.html -------------------------------------------------------------------------------- /docs/articles/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/articles/index.html -------------------------------------------------------------------------------- /docs/articles/textmodel_performance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/articles/textmodel_performance.html -------------------------------------------------------------------------------- /docs/articles/textmodel_performance_files/header-attrs-2.6/header-attrs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/articles/textmodel_performance_files/header-attrs-2.6/header-attrs.js -------------------------------------------------------------------------------- /docs/authors.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/authors.html -------------------------------------------------------------------------------- /docs/bootstrap-toc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/bootstrap-toc.css -------------------------------------------------------------------------------- /docs/bootstrap-toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/bootstrap-toc.js -------------------------------------------------------------------------------- /docs/docsearch.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/docsearch.css -------------------------------------------------------------------------------- /docs/docsearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/docsearch.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/link.svg -------------------------------------------------------------------------------- /docs/news/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/news/index.html -------------------------------------------------------------------------------- /docs/pkgdown.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/pkgdown.css -------------------------------------------------------------------------------- /docs/pkgdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/pkgdown.js -------------------------------------------------------------------------------- /docs/pkgdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/pkgdown.yml -------------------------------------------------------------------------------- /docs/reference/Rplot001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/Rplot001.png -------------------------------------------------------------------------------- /docs/reference/affinity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/affinity.html -------------------------------------------------------------------------------- /docs/reference/as.coefficients_textmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/as.coefficients_textmodel.html -------------------------------------------------------------------------------- /docs/reference/as.matrix.csr.dfm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/as.matrix.csr.dfm.html -------------------------------------------------------------------------------- /docs/reference/as.statistics_textmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/as.statistics_textmodel.html -------------------------------------------------------------------------------- /docs/reference/as.summary.textmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/as.summary.textmodel.html -------------------------------------------------------------------------------- /docs/reference/coef.textmodel_ca.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/coef.textmodel_ca.html -------------------------------------------------------------------------------- /docs/reference/data_corpus_EPcoaldebate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/data_corpus_EPcoaldebate.html -------------------------------------------------------------------------------- /docs/reference/data_corpus_dailnoconf1991.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/data_corpus_dailnoconf1991.html -------------------------------------------------------------------------------- /docs/reference/data_corpus_irishbudget2010.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/data_corpus_irishbudget2010.html -------------------------------------------------------------------------------- /docs/reference/data_corpus_moviereviews.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/data_corpus_moviereviews.html -------------------------------------------------------------------------------- /docs/reference/data_dfm_lbgexample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/data_dfm_lbgexample.html -------------------------------------------------------------------------------- /docs/reference/force_conformance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/force_conformance.html -------------------------------------------------------------------------------- /docs/reference/friendly_class_undefined_message.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/friendly_class_undefined_message.html -------------------------------------------------------------------------------- /docs/reference/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/index.html -------------------------------------------------------------------------------- /docs/reference/influence.predict.textmodel_affinity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/influence.predict.textmodel_affinity.html -------------------------------------------------------------------------------- /docs/reference/message_error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/message_error.html -------------------------------------------------------------------------------- /docs/reference/predict.textmodel_affinity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/predict.textmodel_affinity.html -------------------------------------------------------------------------------- /docs/reference/predict.textmodel_lr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/predict.textmodel_lr.html -------------------------------------------------------------------------------- /docs/reference/predict.textmodel_nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/predict.textmodel_nb.html -------------------------------------------------------------------------------- /docs/reference/predict.textmodel_svm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/predict.textmodel_svm.html -------------------------------------------------------------------------------- /docs/reference/predict.textmodel_svmlin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/predict.textmodel_svmlin.html -------------------------------------------------------------------------------- /docs/reference/predict.textmodel_wordfish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/predict.textmodel_wordfish.html -------------------------------------------------------------------------------- /docs/reference/predict.textmodel_wordscores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/predict.textmodel_wordscores.html -------------------------------------------------------------------------------- /docs/reference/print.coefficients_textmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/print.coefficients_textmodel.html -------------------------------------------------------------------------------- /docs/reference/print.statistics_textmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/print.statistics_textmodel.html -------------------------------------------------------------------------------- /docs/reference/print.summary.textmodel.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/print.summary.textmodel.html -------------------------------------------------------------------------------- /docs/reference/print.textmodel_wordfish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/print.textmodel_wordfish.html -------------------------------------------------------------------------------- /docs/reference/summary.textmodel_lr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/summary.textmodel_lr.html -------------------------------------------------------------------------------- /docs/reference/summary.textmodel_nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/summary.textmodel_nb.html -------------------------------------------------------------------------------- /docs/reference/summary.textmodel_svm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/summary.textmodel_svm.html -------------------------------------------------------------------------------- /docs/reference/summary.textmodel_svmlin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/summary.textmodel_svmlin.html -------------------------------------------------------------------------------- /docs/reference/summary.textmodel_wordfish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/summary.textmodel_wordfish.html -------------------------------------------------------------------------------- /docs/reference/textmodel_affinity-internal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_affinity-internal.html -------------------------------------------------------------------------------- /docs/reference/textmodel_affinity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_affinity.html -------------------------------------------------------------------------------- /docs/reference/textmodel_ca.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_ca.html -------------------------------------------------------------------------------- /docs/reference/textmodel_lr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_lr.html -------------------------------------------------------------------------------- /docs/reference/textmodel_lsa-postestimation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_lsa-postestimation.html -------------------------------------------------------------------------------- /docs/reference/textmodel_lsa.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_lsa.html -------------------------------------------------------------------------------- /docs/reference/textmodel_nb.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_nb.html -------------------------------------------------------------------------------- /docs/reference/textmodel_svm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_svm.html -------------------------------------------------------------------------------- /docs/reference/textmodel_svmlin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_svmlin.html -------------------------------------------------------------------------------- /docs/reference/textmodel_wordfish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_wordfish.html -------------------------------------------------------------------------------- /docs/reference/textmodel_wordscores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodel_wordscores.html -------------------------------------------------------------------------------- /docs/reference/textmodels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textmodels.html -------------------------------------------------------------------------------- /docs/reference/textplot_influence-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textplot_influence-1.png -------------------------------------------------------------------------------- /docs/reference/textplot_influence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/textplot_influence.html -------------------------------------------------------------------------------- /docs/reference/unused_dots.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/reference/unused_dots.html -------------------------------------------------------------------------------- /docs/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/docs/sitemap.xml -------------------------------------------------------------------------------- /inst/WORDLIST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/inst/WORDLIST -------------------------------------------------------------------------------- /man/affinity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/affinity.Rd -------------------------------------------------------------------------------- /man/as.coefficients_textmodel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/as.coefficients_textmodel.Rd -------------------------------------------------------------------------------- /man/as.statistics_textmodel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/as.statistics_textmodel.Rd -------------------------------------------------------------------------------- /man/as.summary.textmodel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/as.summary.textmodel.Rd -------------------------------------------------------------------------------- /man/coef.textmodel_ca.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/coef.textmodel_ca.Rd -------------------------------------------------------------------------------- /man/data_corpus_EPcoaldebate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/data_corpus_EPcoaldebate.Rd -------------------------------------------------------------------------------- /man/data_corpus_dailnoconf1991.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/data_corpus_dailnoconf1991.Rd -------------------------------------------------------------------------------- /man/data_corpus_irishbudget2010.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/data_corpus_irishbudget2010.Rd -------------------------------------------------------------------------------- /man/data_corpus_moviereviews.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/data_corpus_moviereviews.Rd -------------------------------------------------------------------------------- /man/force_conformance.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/force_conformance.Rd -------------------------------------------------------------------------------- /man/influence.predict.textmodel_affinity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/influence.predict.textmodel_affinity.Rd -------------------------------------------------------------------------------- /man/predict.textmodel_affinity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/predict.textmodel_affinity.Rd -------------------------------------------------------------------------------- /man/predict.textmodel_lr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/predict.textmodel_lr.Rd -------------------------------------------------------------------------------- /man/predict.textmodel_nb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/predict.textmodel_nb.Rd -------------------------------------------------------------------------------- /man/predict.textmodel_svmlin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/predict.textmodel_svmlin.Rd -------------------------------------------------------------------------------- /man/predict.textmodel_wordfish.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/predict.textmodel_wordfish.Rd -------------------------------------------------------------------------------- /man/predict.textmodel_wordscores.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/predict.textmodel_wordscores.Rd -------------------------------------------------------------------------------- /man/print.coefficients_textmodel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/print.coefficients_textmodel.Rd -------------------------------------------------------------------------------- /man/print.statistics_textmodel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/print.statistics_textmodel.Rd -------------------------------------------------------------------------------- /man/print.summary.textmodel.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/print.summary.textmodel.Rd -------------------------------------------------------------------------------- /man/print.textmodel_wordfish.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/print.textmodel_wordfish.Rd -------------------------------------------------------------------------------- /man/summary.textmodel_lr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/summary.textmodel_lr.Rd -------------------------------------------------------------------------------- /man/summary.textmodel_nb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/summary.textmodel_nb.Rd -------------------------------------------------------------------------------- /man/summary.textmodel_svmlin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/summary.textmodel_svmlin.Rd -------------------------------------------------------------------------------- /man/summary.textmodel_wordfish.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/summary.textmodel_wordfish.Rd -------------------------------------------------------------------------------- /man/textmodel_affinity-internal.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_affinity-internal.Rd -------------------------------------------------------------------------------- /man/textmodel_affinity.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_affinity.Rd -------------------------------------------------------------------------------- /man/textmodel_ca.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_ca.Rd -------------------------------------------------------------------------------- /man/textmodel_lr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_lr.Rd -------------------------------------------------------------------------------- /man/textmodel_lsa-postestimation.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_lsa-postestimation.Rd -------------------------------------------------------------------------------- /man/textmodel_lsa.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_lsa.Rd -------------------------------------------------------------------------------- /man/textmodel_nb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_nb.Rd -------------------------------------------------------------------------------- /man/textmodel_svmlin.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_svmlin.Rd -------------------------------------------------------------------------------- /man/textmodel_wordfish.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_wordfish.Rd -------------------------------------------------------------------------------- /man/textmodel_wordscores.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodel_wordscores.Rd -------------------------------------------------------------------------------- /man/textmodels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textmodels.Rd -------------------------------------------------------------------------------- /man/textplot_influence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/man/textplot_influence.Rd -------------------------------------------------------------------------------- /src/Makevars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/src/Makevars -------------------------------------------------------------------------------- /src/Makevars.win: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/src/Makevars.win -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/ca.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/src/ca.cpp -------------------------------------------------------------------------------- /src/ssl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/src/ssl.cpp -------------------------------------------------------------------------------- /src/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/src/ssl.h -------------------------------------------------------------------------------- /src/svmlin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/src/svmlin.cpp -------------------------------------------------------------------------------- /src/wordfish.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/src/wordfish.cpp -------------------------------------------------------------------------------- /tests/data-creation/EPcoaldebate/data_EPcoaldebate.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/EPcoaldebate/data_EPcoaldebate.zip -------------------------------------------------------------------------------- /tests/data-creation/EPcoaldebate/metadata_EPcoaldebate.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/EPcoaldebate/metadata_EPcoaldebate.xlsx -------------------------------------------------------------------------------- /tests/data-creation/create_data_corpus_EPcoaldebate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/create_data_corpus_EPcoaldebate.R -------------------------------------------------------------------------------- /tests/data-creation/create_data_corpus_irishbudget2010.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/create_data_corpus_irishbudget2010.R -------------------------------------------------------------------------------- /tests/data-creation/create_data_corpus_moviereviews.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/create_data_corpus_moviereviews.R -------------------------------------------------------------------------------- /tests/data-creation/create_data_dailnoconf.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/create_data_dailnoconf.R -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Ahearn_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Ahearn_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/AhernD_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/AhernD_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Barry_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Barry_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Blaney_FF_Indep.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Blaney_FF_Indep.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Boylan_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Boylan_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Brennan_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Brennan_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Browne_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Browne_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/BrutonJ_FG_Leader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/BrutonJ_FG_Leader.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/BrutonR_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/BrutonR_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Burke_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Burke_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Collins_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Collins_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Connaughton_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Connaughton_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Cowen_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Cowen_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Creed_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Creed_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Cullimore_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Cullimore_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Currie_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Currie_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Daly_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Daly_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Davern_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Davern_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Deasy_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Deasy_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Deenihan_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Deenihan_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Durkan_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Durkan_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Ferris_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Ferris_Lab.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Finucane_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Finucane_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/FitzGerald_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/FitzGerald_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Flaherty_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Flaherty_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Flynn_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Flynn_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Garland_Green_Leader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Garland_Green_Leader.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Gilmore_DL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Gilmore_DL.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Haughey_FF_Taois.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Haughey_FF_Taois.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/HigginsJ_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/HigginsJ_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/HigginsMD_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/HigginsMD_Lab.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Hillery_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Hillery_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Howlin_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Howlin_Lab.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Kenny_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Kenny_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Lenihan_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Lenihan_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Leyden_FF_JMin.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Leyden_FF_JMin.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/McDaid_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/McDaid_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Nolan_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Nolan_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Noonan_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Noonan_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/ODonoghue_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/ODonoghue_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/OHanlon_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/OHanlon_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/OKennedy_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/OKennedy_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/OMalley_PD_Leader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/OMalley_PD_Leader.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/ORourke_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/ORourke_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/OShea_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/OShea_Lab.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Owen_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Owen_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Quinn_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Quinn_Lab.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Rabbitte_DL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Rabbitte_DL.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/ReynoldsG_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/ReynoldsG_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Reynolds_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Reynolds_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Roche_FF.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Roche_FF.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Spring_Lab_Leader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Spring_Lab_Leader.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Stagg_Lab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Stagg_Lab.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/TaylorQuinn_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/TaylorQuinn_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Wilson_FF_Tan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Wilson_FF_Tan.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Woods_FF_Min.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Woods_FF_Min.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/Yates_FG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/Yates_FG.txt -------------------------------------------------------------------------------- /tests/data-creation/dailnoconf/deRossa_DL_Leader.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/dailnoconf/deRossa_DL_Leader.txt -------------------------------------------------------------------------------- /tests/data-creation/removed/test-textmodel_svm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/removed/test-textmodel_svm.R -------------------------------------------------------------------------------- /tests/data-creation/removed/textmodel_svm.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/data-creation/removed/textmodel_svm.R -------------------------------------------------------------------------------- /tests/spelling.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/spelling.R -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-data.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-data.R -------------------------------------------------------------------------------- /tests/testthat/test-default-methods.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-default-methods.R -------------------------------------------------------------------------------- /tests/testthat/test-textmodel_affinity.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-textmodel_affinity.R -------------------------------------------------------------------------------- /tests/testthat/test-textmodel_ca.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-textmodel_ca.R -------------------------------------------------------------------------------- /tests/testthat/test-textmodel_lr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-textmodel_lr.R -------------------------------------------------------------------------------- /tests/testthat/test-textmodel_lsa.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-textmodel_lsa.R -------------------------------------------------------------------------------- /tests/testthat/test-textmodel_nb.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-textmodel_nb.R -------------------------------------------------------------------------------- /tests/testthat/test-textmodel_svmlin.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-textmodel_svmlin.R -------------------------------------------------------------------------------- /tests/testthat/test-textmodel_wordfish.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-textmodel_wordfish.R -------------------------------------------------------------------------------- /tests/testthat/test-textmodel_wordscores.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-textmodel_wordscores.R -------------------------------------------------------------------------------- /tests/testthat/test-utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/tests/testthat/test-utils.R -------------------------------------------------------------------------------- /vignettes/.gitignore: -------------------------------------------------------------------------------- 1 | *.html 2 | *.R 3 | -------------------------------------------------------------------------------- /vignettes/textmodel_performance.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quanteda/quanteda.textmodels/HEAD/vignettes/textmodel_performance.Rmd --------------------------------------------------------------------------------