Is there a way to select a subgraph/subset where clusters have maximum number of vertices?
Essentially I want to do something like:
want <- components(X)$csize < 20
I thought about merging the cluster id's from the graph data frame to the node df, then using a count, or something similar, to subset the original df and compute the graph data frame again.