Q:

networkx - remove small components from a graph

for component in list(nx.connected_components(G)):
    if len(component)<3:
        for node in component:
            G.remove_node(node)
0

New to Communities?

Join the community