Learn R Programming

BiDAG (version 2.1.4)

connectedSubGraph: Deriving connected subgraph

Description

This function derives an adjacency matrix of a subgraph whose nodes are connected to at least one other node in a graph

Usage

connectedSubGraph(adj)

Value

adjacency matrix of a subgraph of graph represented by 'adj' whose nodes have at least one connection

Arguments

adj

square adjacency matrix with elements in {0,1}, representing a graph

Examples

Run this code
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