Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
6e0a18f
Updated tests and DESCRIPTION to use testthat 3e
Matt-Int Jul 1, 2021
42590a5
Adding markdown to suggests
Matt-Int Jul 1, 2021
60af430
Changes made from running styler::style_pkg()
Matt-Int Jul 2, 2021
f1ffd69
Updated corpus_functions to tidyverse style line limit
Matt-Int Jul 2, 2021
7180a29
Updated corpus_functions to be snake case instead of camel case
Matt-Int Jul 2, 2021
3d4709e
Rebuild documentation
Matt-Int Jul 2, 2021
dfcd3d7
Updated evaluation_metrics to tidyverse styleguide
Matt-Int Jul 2, 2021
4017607
Changed calls to CalcProbCoherence and CalcTopicModelR2 calls
Matt-Int Jul 2, 2021
b7577a5
Updated topic_modeling_utilities to conform to tidyverse style
Matt-Int Jul 2, 2021
9ed96e8
Built documentation
Matt-Int Jul 2, 2021
38988ee
Updated examples to use new snake case variables
Matt-Int Jul 3, 2021
73e878d
Updated internal call to Dtm2Tcm from camel to snake version
Matt-Int Jul 3, 2021
f9baa8c
Fixed spelling misstake
Matt-Int Jul 3, 2021
67914f4
Added @param ... to old camel case alias versions.
Matt-Int Jul 3, 2021
6aafb5a
Removed commented out code
Matt-Int Jul 3, 2021
99e129d
Rebuilt documentation
Matt-Int Jul 3, 2021
1c8a378
Removed some unneeded whitespace
Matt-Int Jul 3, 2021
4d9d629
Made tropic_modeling_core not exceed 80 characters
Matt-Int Jul 3, 2021
479783a
Renamed topic_modeling_core functions to be snake_case
Matt-Int Jul 3, 2021
b217ee6
Some more 80 character finicking with the documentation
Matt-Int Jul 3, 2021
94ede8c
Removed some commented code and removed some superflous whitespaces
Matt-Int Jul 3, 2021
f89bd84
Reformatted Matrix call to fit in the 80 characters.
Matt-Int Jul 3, 2021
c21b9e0
Silencing some lintr errors.
Matt-Int Jul 3, 2021
d1ff54f
Renamed R calls to C functions to be snake_case
Matt-Int Jul 3, 2021
b49cc17
Updated other_utilites to closer follow the tidyverse style
Matt-Int Jul 3, 2021
1ec2af1
Updated calls to tm_parallel_apply to the new name
Matt-Int Jul 3, 2021
fad8513
Updated distance_functions to be tidyverse compliant
Matt-Int Jul 3, 2021
6f6bc38
Revert "Renamed R calls to C functions to be snake_case"
Matt-Int Jul 3, 2021
b7b0be1
Removed aliases as .Deprecated doesn't allow the function to be...
Matt-Int Jul 3, 2021
2efaa6b
Rebuilt documentation
Matt-Int Jul 3, 2021
d011de7
Fixing the C calls to be back to orignal, tests now pass again.
Matt-Int Jul 3, 2021
c8d8332
Rebuilt documentation
Matt-Int Jul 3, 2021
3983d0d
Added examples to seperate files and linked them in the roxygen docs
Matt-Int Jul 3, 2021
1112445
Included textmineR:: specification to be more specific about...
Matt-Int Jul 3, 2021
20f4c7f
Exceeded the 80 character limit, so reformatted this call
Matt-Int Jul 3, 2021
9f73490
Moved examples folder into the R directory
Matt-Int Jul 3, 2021
34b5a2a
Fixed call to Hellinger_cpp in distance_functions
Matt-Int Jul 3, 2021
0f576b8
Use the snake_case in the example for calc_hellinger_dist
Matt-Int Jul 3, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ Suggests:
rmarkdown,
SnowballC,
stringi,
testthat,
testthat (>= 3.0.0),
tibble,
tidyr,
tidytext,
topicmodels,
wordcloud
wordcloud,
markdown
License: MIT + file LICENSE
URL: https://www.rtextminer.com/
BugReports: https://github.com/TommyJones/textmineR/issues
Expand All @@ -55,3 +56,4 @@ LinkingTo: Rcpp,
RoxygenNote: 7.1.1
VignetteBuilder: knitr
Language: en-US
Config/testthat/edition: 3
22 changes: 22 additions & 0 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,32 @@ export(LabelTopics)
export(SummarizeTopics)
export(TermDocFreq)
export(TmParallelApply)
export(calc_gamma)
export(calc_hellinger_dist)
export(calc_js_divergence)
export(calc_likelihood)
export(calc_prob_coherence)
export(calc_topic_model_r2)
export(cluster_2_topic_model)
export(create_dtm)
export(create_tcm)
export(dtm_2_docs)
export(dtm_2_lexicon)
export(dtm_2_tcm)
export(dtm_to_lexicon_c)
export(fit_ctm_model)
export(fit_lda_c)
export(fit_lda_model)
export(fit_lsa_model)
export(get_probable_terms)
export(get_top_terms)
export(label_topics)
export(posterior)
export(predict_lda_c)
export(summarise_topics)
export(summarize_topics)
export(term_doc_freq)
export(tm_parallel_apply)
export(update)
import(Matrix)
import(Rcpp)
Expand Down
Loading