Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have some graphs with latitude and longitude data for each vertex and attributes called "tobichi" and "sea" for each edge (essentially, whether to include the edge in plotting or not, presence of either indicating a no). I'm using igraph to visualize this and am writing my own functions to do so. Here's my code so far:

planar.embedding <- function(graph) {
    edge.incidence <- get.edgelist(graph)
    edges.x <- vector(length = (2 * ecount(graph)))
    edges.y <- vector(length = (2 * ecount(graph)))
    for (i in 1:ecount(graph)) {
        edges.x[2 * i - 1] <- get.vertex.attribute(graph, name="lon", index=edge.incidence[i, 1])
        edges.y[2 * i - 1] <- get.vertex.attribute(graph, name="lat", index=edge.incidence[i, 1])
        edges.x[2 * i] <- get.vertex.attribute(graph, name="lon", index=edge.incidence[i, 2])
        edges.y[2 * i] <- get.vertex.attribute(graph, name="lat", index=edge.incidence[i, 2])
    }
    edg <- get.edge.attribute(graph, name="tobichi", index=E(graph))
    c <- get.edge.attribute(graph, name="sea", index=E(graph))
    cedg <- c | edg
    zedg <- c(2 * which(cedg == TRUE), 2 * which(cedg == TRUE) - 1)
    edges.x <- edges.x[-zedg]
    edges.y <- edges.y[-zedg]
    return(cbind(edges.x, edges.y))
}

planar.plot <- function(graph) {
    plot(x=get.vertex.attribute(graph, name="lon", index=V(graph)), y=get.vertex.attribute(graph, name="lat", index=V(graph)))
    lines(x=planar.embedding(graph)[, "edges.x"], y=planar.embedding(graph)[, "edges.y"])
}

Because of how lines() works, edges.x and edges.y are twice as long as the number of edges in the graph, having one entry each for source and sink x and y coordinates. Here edge.incidence[i, 1] gets the source vertex, and edge.incidence[i, 2] gets the sink vertex (of edge i).

The problem is that this works on some graphs but not others. Interestingly enough, when I omit lines 10-15 in planar.embedding everything works fine. What could be going wrong here?

share|improve this question
4  
how about something reproducible, like including data so we can see what you mean? – mdsumner Jul 17 '12 at 3:15
My mistake. I don't want to paste a graph (it's quite a bit of data), but in category 1 everything works, and in category 2 a plot comes up with the positions, but no connections between them. I get no error messages. – jclancy Jul 17 '12 at 4:54
you don't have to paste a big graph, just a small one, or just the code to create one - imagine writing this down for an amnesiac version of yourself, is there anything missing? library(some.package) would be something, and maybe that package has examples that could be of use . . . – mdsumner Jul 17 '12 at 4:57
Ah, nevermind, I found the error. When there are no edges not to plot, I end up with edges.x[-0] which just erases the whole array. So, no lines. – jclancy Jul 17 '12 at 8:36

closed as too localized by mdsumner, Andrie, casperOne Jul 17 '12 at 11:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

Browse other questions tagged or ask your own question.