Is your feature request related to a problem? Please describe.
There is no function in manynet, migraph, or netrics for finding cliques or
maximal cliques. Users must fall back to igraph::max_cliques() via the
igraph:: prefix.
Describe the solution you'd like
A function like max_cliques or mark.groups that that returns clique
membership or lists of maximal cliques and can plot them.
Describe alternatives you've considered
I have now used the igraph function to find cliques, made them into a variable with node_groups, and then I can plot, but it does not work as nicely as doing everything in igraph.
Is your feature request related to a problem? Please describe.
There is no function in manynet, migraph, or netrics for finding cliques or
maximal cliques. Users must fall back to
igraph::max_cliques()via theigraph::prefix.Describe the solution you'd like
A function like
max_cliquesormark.groupsthat that returns cliquemembership or lists of maximal cliques and can plot them.
Describe alternatives you've considered
I have now used the igraph function to find cliques, made them into a variable with node_groups, and then I can plot, but it does not work as nicely as doing everything in igraph.