我在rgraphviz中有一个有向无环图,它将被渲染为DOT图。我想根据其排名来控制节点的外观。如何找到节点的等级?
答案 0 :(得分:0)
这是我的答案。建议欢迎。
gR是正式类GRAPHNEL的对象
gx <- layoutGraph(gR) #can also add node attributes, sublists here
x <- gx@renderInfo@nodes$nodeX
y <- gx@renderInfo@nodes$nodeY
#x and y are named vectors with node names and x / y coordinates
#to get the names of the nodes on the top rank:
topNodes1 <- names(y[y==max(y)])