This function implements a BITOLA-style discovery model based on MeSH term co-occurrence and semantic type filtering.
bitola_model(
co_matrix,
a_term,
a_semantic_type = NULL,
c_semantic_type = NULL,
min_score = 0.1,
n_results = 100
)A data frame with ranked discovery results.
A co-occurrence matrix produced by create_cooccurrence_matrix().
Character string, the source term (A).
Character string, the semantic type for A term.
Character string, the semantic type for C terms.
Minimum score threshold for results.
Maximum number of results to return.