powered by
This function derives an adjacency matrix of a subgraph whose nodes are connected to at least one other node in a graph
connectedSubGraph(adj)
adjacency matrix of a subgraph of graph represented by 'adj' whose nodes have at least one connection
square adjacency matrix with elements in {0,1}, representing a graph
{0,1}
dim(gsimmat) #full graph contains 100 nodes gconn<-connectedSubGraph(gsimmat) #removing disconnected nodes dim(gconn) #connected subgraph contains 93 nodes
Run the code above in your browser using DataLab