我正在努力 1)获取网络的坐标 2)将它们用于其他网络,使其始终具有相同的节点位置。
当我得到节点的坐标并将坐标设置为我从中得到它们的同一网络时,它会发生变化。 x位置保持不变,y位置与假想的y轴对称。因此,当应用两次时,位置就是我想要的位置。
问题可能出在tkplot.getcoords()函数中。你知道是否有一个技巧可以避免两次使用它?
n <- 20
mat <- matrix(1:n^2, n,n)
g <- graph.adjacency(mat, mode="directed", weighted=TRUE, diag=FALSE)
V(g)$color <- "white"
id <- tkplot(g, edge.curved = 0.5)
coor <- tkplot.getcoords(id,norm=F)
coor
tkplot.setcoords(id, coor) # wrong position
coor <- tkplot.getcoords(id,norm=F)
coor
tkplot.setcoords(id, coor) # desired position
答案 0 :(得分:0)
你知道是否有一个技巧可以避免两次使用它?
好像你必须翻转y坐标;这适用于我的电脑:
library(igraph)
set.seed(1);n <- 5
mat <- matrix(1:n^2, n,n)
g <- graph.adjacency(mat, mode="directed", weighted=TRUE, diag=FALSE)
V(g)$color <- "white"
id <- tkplot(g, 200, 200, edge.curved = 0.5)
coor <- tkplot.getcoords(id,norm=F)
canvas_height <- as.numeric(tcltk::tkcget(tk_canvas(id), "-height"))-20 # twenty by trial&error - prly the frame border top&bottom?
coor[,2] <- canvas_height-coor[,2]
# move some vertices and...
tkplot.setcoords(id, coor) # reset