I've looked through the source for V and E and I'm not really sure how they work. Here's the code for V:
> V
function (graph)
{
if (!is.igraph(graph)) {
stop("Not a graph object")
}
vc <- vcount(graph)
if (vc == 0) {
res <- numeric()
}
else {
res <- 0:(vc - 1)
}
class(res) <- "igraph.vs"
ne <- new.env()
assign("graph", graph, envir = ne)
attr(res, "env") <- ne
res
}
I'm not really sure what purpose the calls to assign and attr serve here. Does assigning graph create a new copy of graph? How efficient/inefficient is this? That is, how many copies of graph does this generate say in code like:
V(g)$someattr <- somevector
Thanks for the help.
igraphso can't answer your general question, but usually in R when you see apparently superfluous environments being created and assigned into, the purpose is to prevent a copy from being made. I'm guessing this is what let'sV(g)refer back to and modifyg(stackoverflow.com/questions/3693121/…) – Owen Aug 25 '11 at 22:00g. – starflyer Aug 25 '11 at 22:04