Fixed stopword removal in make_DTMs(): the buggy purrr::reduce() pre-tokenisation block has been replaced with a post-tokenisation filter, producing correct document-term matrices.
Dependency changes
Dropped magrittr, scales, future, and furrr from Imports (14 -> 11).
Moved shiny, bslib, DT, ggraph, and tidygraph to Suggests with runtime requireNamespace() guards.
Added mirai to Suggests for optional parallelism.
Bumped purrr minimum to >= 1.2.0.
Performance
topics_rename(): replaced O(k*n) map2_dfr with O(n) named-vector lookup.