When I run this simple example, igraph adds one vertex, and my vertices start at 2 instead of 1
# very very simple graph (1-2-3) edges <- rbind(c(1,2), c(2,3)) write.table(edges, file="edgetest.txt", sep=" ", quote=F, row.names=F, col.names = F) g <- simplify(read.graph(file="edgetest.txt", format="edgelist", directed=F)) plot(g)
Here's what it looks like after running the example

Does anyone know why this is happening? Is this normal or am I missing something
source share