我想用两种类型的节点布置图形(树):盒子和圆圈。
igraph有可能吗?最小的例子怎么样?
答案 0 :(得分:5)
library(igraph)
g <- graph.empty()
g <- add.vertices(g, 4,
label=c('a', 'b', 'c', 'd'),
shape=c('rectangle', 'rectangle', 'circle', 'circle'))
g <- add.edges(g, c(1, 2, 2, 3))
plot(g)