├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── DESCRIPTION ├── NAMESPACE ├── R ├── .DS_Store ├── Data_Documentation.R ├── Package_Documentation.R ├── calculate_prediction_errors.R ├── dfm_scaling_test.R ├── document_position_plots.R ├── factorial_preprocessing.R ├── find_optimal_number_of_topics.R ├── get_perplexities.R ├── mantel_comparison.R ├── mantel_comparison_to_base.R ├── multiplot_ggplot2.R ├── optimal_k_comparison.R ├── parallel_preprocess.R ├── parallel_rank_test.R ├── preText.R ├── preText_score_plot.R ├── preText_test.R ├── preprocessing_choice_regression.R ├── preprocessing_pipeline.R ├── regression_coefficient_plot.R ├── remove_infrequent_terms.R ├── scaling_comparison.R ├── temporal_filter.R ├── topic_key_term_plot.R ├── topic_novelty_score.R ├── wordfish_comparison.R ├── wordfish_rank_plot.R └── zzz.R ├── README.md ├── cran-comments.md ├── data └── UK_Manifestos.rda ├── man ├── .DS_Store ├── UK_Manifestos.Rd ├── calculate_prediction_errors.Rd ├── dfm_scaling_test.Rd ├── document_position_plots.Rd ├── factorial_preprocessing.Rd ├── mantel_comparison.Rd ├── mantel_comparison_to_base.Rd ├── optimal_k_comparison.Rd ├── preText.Rd ├── preText_score_plot.Rd ├── preText_test.Rd ├── preprocessing_choice_regression.Rd ├── regression_coefficient_plot.Rd ├── remove_infrequent_terms.Rd ├── scaling_comparison.Rd ├── topic_key_term_plot.Rd ├── topic_novelty_score.Rd ├── wordfish_comparison.Rd └── wordfish_rank_plot.Rd ├── tests ├── .DS_Store ├── testthat.R └── testthat │ └── test_factorial_preprocessing.R └── vignettes └── getting_started_with_preText.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/.travis.yml -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/.DS_Store -------------------------------------------------------------------------------- /R/Data_Documentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/Data_Documentation.R -------------------------------------------------------------------------------- /R/Package_Documentation.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/Package_Documentation.R -------------------------------------------------------------------------------- /R/calculate_prediction_errors.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/calculate_prediction_errors.R -------------------------------------------------------------------------------- /R/dfm_scaling_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/dfm_scaling_test.R -------------------------------------------------------------------------------- /R/document_position_plots.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/document_position_plots.R -------------------------------------------------------------------------------- /R/factorial_preprocessing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/factorial_preprocessing.R -------------------------------------------------------------------------------- /R/find_optimal_number_of_topics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/find_optimal_number_of_topics.R -------------------------------------------------------------------------------- /R/get_perplexities.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/get_perplexities.R -------------------------------------------------------------------------------- /R/mantel_comparison.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/mantel_comparison.R -------------------------------------------------------------------------------- /R/mantel_comparison_to_base.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/mantel_comparison_to_base.R -------------------------------------------------------------------------------- /R/multiplot_ggplot2.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/multiplot_ggplot2.R -------------------------------------------------------------------------------- /R/optimal_k_comparison.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/optimal_k_comparison.R -------------------------------------------------------------------------------- /R/parallel_preprocess.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/parallel_preprocess.R -------------------------------------------------------------------------------- /R/parallel_rank_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/parallel_rank_test.R -------------------------------------------------------------------------------- /R/preText.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/preText.R -------------------------------------------------------------------------------- /R/preText_score_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/preText_score_plot.R -------------------------------------------------------------------------------- /R/preText_test.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/preText_test.R -------------------------------------------------------------------------------- /R/preprocessing_choice_regression.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/preprocessing_choice_regression.R -------------------------------------------------------------------------------- /R/preprocessing_pipeline.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/preprocessing_pipeline.R -------------------------------------------------------------------------------- /R/regression_coefficient_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/regression_coefficient_plot.R -------------------------------------------------------------------------------- /R/remove_infrequent_terms.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/remove_infrequent_terms.R -------------------------------------------------------------------------------- /R/scaling_comparison.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/scaling_comparison.R -------------------------------------------------------------------------------- /R/temporal_filter.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/temporal_filter.R -------------------------------------------------------------------------------- /R/topic_key_term_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/topic_key_term_plot.R -------------------------------------------------------------------------------- /R/topic_novelty_score.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/topic_novelty_score.R -------------------------------------------------------------------------------- /R/wordfish_comparison.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/wordfish_comparison.R -------------------------------------------------------------------------------- /R/wordfish_rank_plot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/wordfish_rank_plot.R -------------------------------------------------------------------------------- /R/zzz.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/R/zzz.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/cran-comments.md -------------------------------------------------------------------------------- /data/UK_Manifestos.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/data/UK_Manifestos.rda -------------------------------------------------------------------------------- /man/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/.DS_Store -------------------------------------------------------------------------------- /man/UK_Manifestos.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/UK_Manifestos.Rd -------------------------------------------------------------------------------- /man/calculate_prediction_errors.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/calculate_prediction_errors.Rd -------------------------------------------------------------------------------- /man/dfm_scaling_test.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/dfm_scaling_test.Rd -------------------------------------------------------------------------------- /man/document_position_plots.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/document_position_plots.Rd -------------------------------------------------------------------------------- /man/factorial_preprocessing.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/factorial_preprocessing.Rd -------------------------------------------------------------------------------- /man/mantel_comparison.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/mantel_comparison.Rd -------------------------------------------------------------------------------- /man/mantel_comparison_to_base.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/mantel_comparison_to_base.Rd -------------------------------------------------------------------------------- /man/optimal_k_comparison.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/optimal_k_comparison.Rd -------------------------------------------------------------------------------- /man/preText.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/preText.Rd -------------------------------------------------------------------------------- /man/preText_score_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/preText_score_plot.Rd -------------------------------------------------------------------------------- /man/preText_test.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/preText_test.Rd -------------------------------------------------------------------------------- /man/preprocessing_choice_regression.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/preprocessing_choice_regression.Rd -------------------------------------------------------------------------------- /man/regression_coefficient_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/regression_coefficient_plot.Rd -------------------------------------------------------------------------------- /man/remove_infrequent_terms.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/remove_infrequent_terms.Rd -------------------------------------------------------------------------------- /man/scaling_comparison.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/scaling_comparison.Rd -------------------------------------------------------------------------------- /man/topic_key_term_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/topic_key_term_plot.Rd -------------------------------------------------------------------------------- /man/topic_novelty_score.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/topic_novelty_score.Rd -------------------------------------------------------------------------------- /man/wordfish_comparison.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/wordfish_comparison.Rd -------------------------------------------------------------------------------- /man/wordfish_rank_plot.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/man/wordfish_rank_plot.Rd -------------------------------------------------------------------------------- /tests/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/tests/.DS_Store -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_factorial_preprocessing.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/tests/testthat/test_factorial_preprocessing.R -------------------------------------------------------------------------------- /vignettes/getting_started_with_preText.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/matthewjdenny/preText/HEAD/vignettes/getting_started_with_preText.Rmd --------------------------------------------------------------------------------