0
我在rgraphviz中有一個定向的非循環圖,它將被渲染爲一個DOT圖。我想根據它的等級來控制節點的外觀。我如何找到節點的排名?如何查找rgraphviz中節點的等級?
我在rgraphviz中有一個定向的非循環圖,它將被渲染爲一個DOT圖。我想根據它的等級來控制節點的外觀。我如何找到節點的排名?如何查找rgraphviz中節點的等級?
這是我的答案。建議歡迎。
GR是正式類GRAPHNEL的目的
gx <- layoutGraph(gR) #can also add node attributes, sublists here
x <- [email protected]@nodes$nodeX
y <- [email protected]@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)])