This function finds all potential ABC connections in a co-occurrence matrix.
find_abc_all(
co_matrix,
a_type = NULL,
c_type = NULL,
min_score = 0.1,
n_results = 1000
)A data frame with ranked discovery results.
A co-occurrence matrix produced by create_comat().
Character string, the entity type for A terms.
Character string, the entity type for C terms.
Minimum score threshold for results.
Maximum number of results to return.