I have an edge list as follows (simple example):
DT <- data.frame(x = c(letters[1:7],"a","b","c","a","d","e","f"), y = c(letters[1:7],"b","a","a","c","f","f","d"))
> DT
x y
1 a a
2 b b
3 c c
4 d d
5 e e
6 f f
7 g g
8 a b
9 b a
10 c a
11 a c
12 d f
13 e f
14 f d
I then graphed this using the following code:
require(igraph)
myadj <- get.adjacency(graph.edgelist(as.matrix(DT), directed=FALSE))
my_graph <- graph.adjacency(myadj)
layout <- layout.fruchterman.reingold(my_graph,niter=500,area=vcount(my_graph)^2.3,repulserad=vcount(my_graph)^2.8)
plot(my_graph, vertex.size=10,
vertex.label.cex=1,
edge.arrow.size=0, edge.curved=TRUE,layout=layout)
What I would now like to go is extract the set of all closed nodes. I'm not sure what a typical notation would look like, but I could imagine:
node set
1 a 1
2 b 1
3 c 1
4 d 2
5 e 2
6 f 2
7 g 3
I have looked around for functions/algorithms, but I don't think I have been able to articulate what I am looking for properly. As I am very new to graph theory, I am also not sure of the right format to start with. Is this easiest with an edge list, adjacency matrix (sparse or full) or otherwise?
Try