├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── 1_tcorpus.r ├── RcppExports.R ├── adjacency_functions.r ├── aggregate.r ├── batching.r ├── chi.r ├── compare_corpora.r ├── compare_documents.r ├── create_tcorpus.r ├── data.r ├── dictionaries.r ├── document_term_matrix.r ├── documentation_methods.r ├── documentation_overview.r ├── ego_network.r ├── feature_associations.r ├── feature_information.r ├── get_quoted_text.r ├── import.r ├── import_tcorpus.r ├── kwic.r ├── lda.r ├── merge_tcorpus.r ├── multitokens.r ├── overlap_highlight.r ├── plot_words.r ├── positions.r ├── preprocessing.r ├── print_text.r ├── query.r ├── rsyntax.r ├── rsyntax_convenience.r ├── search.r ├── search_contexts.r ├── search_dictionary.r ├── search_features.r ├── search_results.r ├── semnet.r ├── semnet_backbone.r ├── semnet_plotting.r ├── smoothing.r ├── subset_tcorpus.r ├── tokenize.r ├── udpipe.r ├── udpipe_tcorpus.r ├── udpipe_tqueries.r ├── udpipe_transformations.r ├── untokenize.r └── util.r ├── README.md ├── corpustools.Rproj ├── data ├── corenlp_tokens.rda ├── sotu_texts.rda ├── stopwords_list.rda └── tc_sotu_udpipe.rda ├── man ├── add_multitoken_label.Rd ├── agg_label.Rd ├── agg_tcorpus.Rd ├── aggregate_rsyntax.Rd ├── as.tcorpus.Rd ├── as.tcorpus.default.Rd ├── as.tcorpus.tCorpus.Rd ├── backbone_filter.Rd ├── browse_hits.Rd ├── browse_texts.Rd ├── calc_chi2.Rd ├── compare_corpus.Rd ├── compare_documents.Rd ├── compare_subset.Rd ├── corenlp_tokens.Rd ├── count_tcorpus.Rd ├── create_tcorpus.Rd ├── docfreq_filter.Rd ├── dtm_compare.Rd ├── dtm_wordcloud.Rd ├── ego_semnet.Rd ├── export_span_annotations.Rd ├── feature_associations.Rd ├── feature_stats.Rd ├── fold_rsyntax.Rd ├── freq_filter.Rd ├── get_dtm.Rd ├── get_global_i.Rd ├── get_kwic.Rd ├── get_stopwords.Rd ├── laplace.Rd ├── melt_quanteda_dict.Rd ├── merge_tcorpora.Rd ├── plot.contextHits.Rd ├── plot.featureAssociations.Rd ├── plot.featureHits.Rd ├── plot.vocabularyComparison.Rd ├── plot_semnet.Rd ├── plot_words.Rd ├── preprocess_tokens.Rd ├── print.contextHits.Rd ├── print.featureHits.Rd ├── print.tCorpus.Rd ├── refresh_tcorpus.Rd ├── require_package.Rd ├── search_contexts.Rd ├── search_dictionary.Rd ├── search_features.Rd ├── semnet.Rd ├── semnet_window.Rd ├── set_network_attributes.Rd ├── sgt.Rd ├── show_udpipe_models.Rd ├── sotu_texts.Rd ├── stopwords_list.Rd ├── subset.tCorpus.Rd ├── subset_query.Rd ├── summary.contextHits.Rd ├── summary.featureHits.Rd ├── summary.tCorpus.Rd ├── tCorpus-cash-annotate_rsyntax.Rd ├── tCorpus-cash-code_dictionary.Rd ├── tCorpus-cash-code_features.Rd ├── tCorpus-cash-context.Rd ├── tCorpus-cash-deduplicate.Rd ├── tCorpus-cash-delete_columns.Rd ├── tCorpus-cash-feats_to_columns.Rd ├── tCorpus-cash-feature_subset.Rd ├── tCorpus-cash-fold_rsyntax.Rd ├── tCorpus-cash-get.Rd ├── tCorpus-cash-lda_fit.Rd ├── tCorpus-cash-merge.Rd ├── tCorpus-cash-preprocess.Rd ├── tCorpus-cash-replace_dictionary.Rd ├── tCorpus-cash-search_recode.Rd ├── tCorpus-cash-set.Rd ├── tCorpus-cash-set_levels.Rd ├── tCorpus-cash-set_name.Rd ├── tCorpus-cash-subset.Rd ├── tCorpus-cash-subset_query.Rd ├── tCorpus-cash-udpipe_clauses.Rd ├── tCorpus-cash-udpipe_quotes.Rd ├── tCorpus.Rd ├── tCorpus_compare.Rd ├── tCorpus_create.Rd ├── tCorpus_data.Rd ├── tCorpus_docsim.Rd ├── tCorpus_features.Rd ├── tCorpus_modify_by_reference.Rd ├── tCorpus_querying.Rd ├── tCorpus_semnet.Rd ├── tCorpus_topmod.Rd ├── tc_plot_tree.Rd ├── tc_sotu_udpipe.Rd ├── tokenWindowOccurence.Rd ├── tokens_to_tcorpus.Rd ├── top_features.Rd ├── transform_rsyntax.Rd ├── udpipe_clause_tqueries.Rd ├── udpipe_quote_tqueries.Rd ├── udpipe_simplify.Rd ├── udpipe_spanquote_tqueries.Rd ├── udpipe_tcorpus.Rd └── untokenize.Rd ├── src ├── QueryIter.cpp ├── QueryIter.h ├── RcppExports.cpp ├── collapse_terms.cpp ├── dictionary_lookup.cpp ├── fast_factor.cpp ├── hit_ids_and.cpp ├── hit_ids_proximity.cpp ├── hit_ids_sequence.cpp ├── ngrams.cpp └── parse_query.cpp ├── tests ├── testthat.r └── testthat │ ├── test_advanced_search.r │ ├── test_compare_documents.r │ ├── test_corpus_comparison.r │ ├── test_dictionary_lookup.r │ ├── test_feature_associations.r │ ├── test_feature_stats.r │ ├── test_preprocessing.r │ ├── test_remember_space.r │ ├── test_search_contexts.r │ ├── test_search_features.r │ ├── test_semnet.r │ ├── test_tcorpus.r │ └── test_topicmodels.r └── vignettes ├── build_vignette.r ├── corpustools.R ├── corpustools.Rmd └── corpustools.html /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/1_tcorpus.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/1_tcorpus.r -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/adjacency_functions.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/adjacency_functions.r -------------------------------------------------------------------------------- /R/aggregate.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/aggregate.r -------------------------------------------------------------------------------- /R/batching.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/batching.r -------------------------------------------------------------------------------- /R/chi.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/chi.r -------------------------------------------------------------------------------- /R/compare_corpora.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/compare_corpora.r -------------------------------------------------------------------------------- /R/compare_documents.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/compare_documents.r -------------------------------------------------------------------------------- /R/create_tcorpus.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/create_tcorpus.r -------------------------------------------------------------------------------- /R/data.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/data.r -------------------------------------------------------------------------------- /R/dictionaries.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/dictionaries.r -------------------------------------------------------------------------------- /R/document_term_matrix.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/document_term_matrix.r -------------------------------------------------------------------------------- /R/documentation_methods.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/documentation_methods.r -------------------------------------------------------------------------------- /R/documentation_overview.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/documentation_overview.r -------------------------------------------------------------------------------- /R/ego_network.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/ego_network.r -------------------------------------------------------------------------------- /R/feature_associations.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/feature_associations.r -------------------------------------------------------------------------------- /R/feature_information.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/feature_information.r -------------------------------------------------------------------------------- /R/get_quoted_text.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/get_quoted_text.r -------------------------------------------------------------------------------- /R/import.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/import.r -------------------------------------------------------------------------------- /R/import_tcorpus.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/import_tcorpus.r -------------------------------------------------------------------------------- /R/kwic.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/kwic.r -------------------------------------------------------------------------------- /R/lda.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/lda.r -------------------------------------------------------------------------------- /R/merge_tcorpus.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/merge_tcorpus.r -------------------------------------------------------------------------------- /R/multitokens.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/multitokens.r -------------------------------------------------------------------------------- /R/overlap_highlight.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/overlap_highlight.r -------------------------------------------------------------------------------- /R/plot_words.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/plot_words.r -------------------------------------------------------------------------------- /R/positions.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/positions.r -------------------------------------------------------------------------------- /R/preprocessing.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/preprocessing.r -------------------------------------------------------------------------------- /R/print_text.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/print_text.r -------------------------------------------------------------------------------- /R/query.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/query.r -------------------------------------------------------------------------------- /R/rsyntax.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/rsyntax.r -------------------------------------------------------------------------------- /R/rsyntax_convenience.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/rsyntax_convenience.r -------------------------------------------------------------------------------- /R/search.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/search.r -------------------------------------------------------------------------------- /R/search_contexts.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/search_contexts.r -------------------------------------------------------------------------------- /R/search_dictionary.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/search_dictionary.r -------------------------------------------------------------------------------- /R/search_features.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/search_features.r -------------------------------------------------------------------------------- /R/search_results.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/search_results.r -------------------------------------------------------------------------------- /R/semnet.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/semnet.r -------------------------------------------------------------------------------- /R/semnet_backbone.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/semnet_backbone.r -------------------------------------------------------------------------------- /R/semnet_plotting.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/semnet_plotting.r -------------------------------------------------------------------------------- /R/smoothing.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/smoothing.r -------------------------------------------------------------------------------- /R/subset_tcorpus.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/subset_tcorpus.r -------------------------------------------------------------------------------- /R/tokenize.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/tokenize.r -------------------------------------------------------------------------------- /R/udpipe.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/udpipe.r -------------------------------------------------------------------------------- /R/udpipe_tcorpus.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/udpipe_tcorpus.r -------------------------------------------------------------------------------- /R/udpipe_tqueries.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/udpipe_tqueries.r -------------------------------------------------------------------------------- /R/udpipe_transformations.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/udpipe_transformations.r -------------------------------------------------------------------------------- /R/untokenize.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/untokenize.r -------------------------------------------------------------------------------- /R/util.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/R/util.r -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/README.md -------------------------------------------------------------------------------- /corpustools.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/corpustools.Rproj -------------------------------------------------------------------------------- /data/corenlp_tokens.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/data/corenlp_tokens.rda -------------------------------------------------------------------------------- /data/sotu_texts.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/data/sotu_texts.rda -------------------------------------------------------------------------------- /data/stopwords_list.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/data/stopwords_list.rda -------------------------------------------------------------------------------- /data/tc_sotu_udpipe.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/data/tc_sotu_udpipe.rda -------------------------------------------------------------------------------- /man/add_multitoken_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/add_multitoken_label.Rd -------------------------------------------------------------------------------- /man/agg_label.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/agg_label.Rd -------------------------------------------------------------------------------- /man/agg_tcorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/agg_tcorpus.Rd -------------------------------------------------------------------------------- /man/aggregate_rsyntax.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/aggregate_rsyntax.Rd -------------------------------------------------------------------------------- /man/as.tcorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/as.tcorpus.Rd -------------------------------------------------------------------------------- /man/as.tcorpus.default.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/as.tcorpus.default.Rd -------------------------------------------------------------------------------- /man/as.tcorpus.tCorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/as.tcorpus.tCorpus.Rd -------------------------------------------------------------------------------- /man/backbone_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/backbone_filter.Rd -------------------------------------------------------------------------------- /man/browse_hits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/browse_hits.Rd -------------------------------------------------------------------------------- /man/browse_texts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/browse_texts.Rd -------------------------------------------------------------------------------- /man/calc_chi2.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/calc_chi2.Rd -------------------------------------------------------------------------------- /man/compare_corpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/compare_corpus.Rd -------------------------------------------------------------------------------- /man/compare_documents.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/compare_documents.Rd -------------------------------------------------------------------------------- /man/compare_subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/compare_subset.Rd -------------------------------------------------------------------------------- /man/corenlp_tokens.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/corenlp_tokens.Rd -------------------------------------------------------------------------------- /man/count_tcorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/count_tcorpus.Rd -------------------------------------------------------------------------------- /man/create_tcorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/create_tcorpus.Rd -------------------------------------------------------------------------------- /man/docfreq_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/docfreq_filter.Rd -------------------------------------------------------------------------------- /man/dtm_compare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/dtm_compare.Rd -------------------------------------------------------------------------------- /man/dtm_wordcloud.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/dtm_wordcloud.Rd -------------------------------------------------------------------------------- /man/ego_semnet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/ego_semnet.Rd -------------------------------------------------------------------------------- /man/export_span_annotations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/export_span_annotations.Rd -------------------------------------------------------------------------------- /man/feature_associations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/feature_associations.Rd -------------------------------------------------------------------------------- /man/feature_stats.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/feature_stats.Rd -------------------------------------------------------------------------------- /man/fold_rsyntax.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/fold_rsyntax.Rd -------------------------------------------------------------------------------- /man/freq_filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/freq_filter.Rd -------------------------------------------------------------------------------- /man/get_dtm.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/get_dtm.Rd -------------------------------------------------------------------------------- /man/get_global_i.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/get_global_i.Rd -------------------------------------------------------------------------------- /man/get_kwic.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/get_kwic.Rd -------------------------------------------------------------------------------- /man/get_stopwords.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/get_stopwords.Rd -------------------------------------------------------------------------------- /man/laplace.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/laplace.Rd -------------------------------------------------------------------------------- /man/melt_quanteda_dict.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/melt_quanteda_dict.Rd -------------------------------------------------------------------------------- /man/merge_tcorpora.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/merge_tcorpora.Rd -------------------------------------------------------------------------------- /man/plot.contextHits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/plot.contextHits.Rd -------------------------------------------------------------------------------- /man/plot.featureAssociations.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/plot.featureAssociations.Rd -------------------------------------------------------------------------------- /man/plot.featureHits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/plot.featureHits.Rd -------------------------------------------------------------------------------- /man/plot.vocabularyComparison.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/plot.vocabularyComparison.Rd -------------------------------------------------------------------------------- /man/plot_semnet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/plot_semnet.Rd -------------------------------------------------------------------------------- /man/plot_words.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/plot_words.Rd -------------------------------------------------------------------------------- /man/preprocess_tokens.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/preprocess_tokens.Rd -------------------------------------------------------------------------------- /man/print.contextHits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/print.contextHits.Rd -------------------------------------------------------------------------------- /man/print.featureHits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/print.featureHits.Rd -------------------------------------------------------------------------------- /man/print.tCorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/print.tCorpus.Rd -------------------------------------------------------------------------------- /man/refresh_tcorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/refresh_tcorpus.Rd -------------------------------------------------------------------------------- /man/require_package.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/require_package.Rd -------------------------------------------------------------------------------- /man/search_contexts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/search_contexts.Rd -------------------------------------------------------------------------------- /man/search_dictionary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/search_dictionary.Rd -------------------------------------------------------------------------------- /man/search_features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/search_features.Rd -------------------------------------------------------------------------------- /man/semnet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/semnet.Rd -------------------------------------------------------------------------------- /man/semnet_window.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/semnet_window.Rd -------------------------------------------------------------------------------- /man/set_network_attributes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/set_network_attributes.Rd -------------------------------------------------------------------------------- /man/sgt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/sgt.Rd -------------------------------------------------------------------------------- /man/show_udpipe_models.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/show_udpipe_models.Rd -------------------------------------------------------------------------------- /man/sotu_texts.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/sotu_texts.Rd -------------------------------------------------------------------------------- /man/stopwords_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/stopwords_list.Rd -------------------------------------------------------------------------------- /man/subset.tCorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/subset.tCorpus.Rd -------------------------------------------------------------------------------- /man/subset_query.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/subset_query.Rd -------------------------------------------------------------------------------- /man/summary.contextHits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/summary.contextHits.Rd -------------------------------------------------------------------------------- /man/summary.featureHits.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/summary.featureHits.Rd -------------------------------------------------------------------------------- /man/summary.tCorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/summary.tCorpus.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-annotate_rsyntax.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-annotate_rsyntax.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-code_dictionary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-code_dictionary.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-code_features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-code_features.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-context.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-context.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-deduplicate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-deduplicate.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-delete_columns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-delete_columns.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-feats_to_columns.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-feats_to_columns.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-feature_subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-feature_subset.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-fold_rsyntax.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-fold_rsyntax.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-get.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-get.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-lda_fit.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-lda_fit.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-merge.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-merge.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-preprocess.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-preprocess.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-replace_dictionary.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-replace_dictionary.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-search_recode.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-search_recode.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-set.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-set.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-set_levels.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-set_levels.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-set_name.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-set_name.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-subset.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-subset_query.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-subset_query.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-udpipe_clauses.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-udpipe_clauses.Rd -------------------------------------------------------------------------------- /man/tCorpus-cash-udpipe_quotes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus-cash-udpipe_quotes.Rd -------------------------------------------------------------------------------- /man/tCorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus.Rd -------------------------------------------------------------------------------- /man/tCorpus_compare.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus_compare.Rd -------------------------------------------------------------------------------- /man/tCorpus_create.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus_create.Rd -------------------------------------------------------------------------------- /man/tCorpus_data.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus_data.Rd -------------------------------------------------------------------------------- /man/tCorpus_docsim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus_docsim.Rd -------------------------------------------------------------------------------- /man/tCorpus_features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus_features.Rd -------------------------------------------------------------------------------- /man/tCorpus_modify_by_reference.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus_modify_by_reference.Rd -------------------------------------------------------------------------------- /man/tCorpus_querying.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus_querying.Rd -------------------------------------------------------------------------------- /man/tCorpus_semnet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus_semnet.Rd -------------------------------------------------------------------------------- /man/tCorpus_topmod.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tCorpus_topmod.Rd -------------------------------------------------------------------------------- /man/tc_plot_tree.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tc_plot_tree.Rd -------------------------------------------------------------------------------- /man/tc_sotu_udpipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tc_sotu_udpipe.Rd -------------------------------------------------------------------------------- /man/tokenWindowOccurence.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tokenWindowOccurence.Rd -------------------------------------------------------------------------------- /man/tokens_to_tcorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/tokens_to_tcorpus.Rd -------------------------------------------------------------------------------- /man/top_features.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/top_features.Rd -------------------------------------------------------------------------------- /man/transform_rsyntax.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/transform_rsyntax.Rd -------------------------------------------------------------------------------- /man/udpipe_clause_tqueries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/udpipe_clause_tqueries.Rd -------------------------------------------------------------------------------- /man/udpipe_quote_tqueries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/udpipe_quote_tqueries.Rd -------------------------------------------------------------------------------- /man/udpipe_simplify.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/udpipe_simplify.Rd -------------------------------------------------------------------------------- /man/udpipe_spanquote_tqueries.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/udpipe_spanquote_tqueries.Rd -------------------------------------------------------------------------------- /man/udpipe_tcorpus.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/udpipe_tcorpus.Rd -------------------------------------------------------------------------------- /man/untokenize.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/man/untokenize.Rd -------------------------------------------------------------------------------- /src/QueryIter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/QueryIter.cpp -------------------------------------------------------------------------------- /src/QueryIter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/QueryIter.h -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/collapse_terms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/collapse_terms.cpp -------------------------------------------------------------------------------- /src/dictionary_lookup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/dictionary_lookup.cpp -------------------------------------------------------------------------------- /src/fast_factor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/fast_factor.cpp -------------------------------------------------------------------------------- /src/hit_ids_and.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/hit_ids_and.cpp -------------------------------------------------------------------------------- /src/hit_ids_proximity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/hit_ids_proximity.cpp -------------------------------------------------------------------------------- /src/hit_ids_sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/hit_ids_sequence.cpp -------------------------------------------------------------------------------- /src/ngrams.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/ngrams.cpp -------------------------------------------------------------------------------- /src/parse_query.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/src/parse_query.cpp -------------------------------------------------------------------------------- /tests/testthat.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat.r -------------------------------------------------------------------------------- /tests/testthat/test_advanced_search.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_advanced_search.r -------------------------------------------------------------------------------- /tests/testthat/test_compare_documents.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_compare_documents.r -------------------------------------------------------------------------------- /tests/testthat/test_corpus_comparison.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_corpus_comparison.r -------------------------------------------------------------------------------- /tests/testthat/test_dictionary_lookup.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_dictionary_lookup.r -------------------------------------------------------------------------------- /tests/testthat/test_feature_associations.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_feature_associations.r -------------------------------------------------------------------------------- /tests/testthat/test_feature_stats.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_feature_stats.r -------------------------------------------------------------------------------- /tests/testthat/test_preprocessing.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_preprocessing.r -------------------------------------------------------------------------------- /tests/testthat/test_remember_space.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_remember_space.r -------------------------------------------------------------------------------- /tests/testthat/test_search_contexts.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_search_contexts.r -------------------------------------------------------------------------------- /tests/testthat/test_search_features.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_search_features.r -------------------------------------------------------------------------------- /tests/testthat/test_semnet.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_semnet.r -------------------------------------------------------------------------------- /tests/testthat/test_tcorpus.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_tcorpus.r -------------------------------------------------------------------------------- /tests/testthat/test_topicmodels.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/tests/testthat/test_topicmodels.r -------------------------------------------------------------------------------- /vignettes/build_vignette.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/vignettes/build_vignette.r -------------------------------------------------------------------------------- /vignettes/corpustools.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/vignettes/corpustools.R -------------------------------------------------------------------------------- /vignettes/corpustools.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/vignettes/corpustools.Rmd -------------------------------------------------------------------------------- /vignettes/corpustools.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kasperwelbers/corpustools/HEAD/vignettes/corpustools.html --------------------------------------------------------------------------------