与R和igraph交互式绘图:tkplot崩溃

时间:2016-11-15 05:41:13

标签: r igraph tkplot

关于tkplot的用户体验,没有太多信息。它只是为我崩溃。我有R版本3.2.3和igraph 1.0.1 我正在尝试运行下面的脚本,但我看到tkplot闪烁一瞬间,然后它关闭。我得到了与其他tkplot示例相同的行为。任何帮助是极大的赞赏。这个脚本适用于任何人吗?

library(igraph)
net <- graph( edges=c(1,2, 2,3, 3, 1), n=3, directed=F )
tkid <- tkplot(net) #tkid is the id of the tkplot that will open
l <- tkplot.getcoords(tkid) # grab the coordinates from tkplot
##tk_close(tkid, window.close = T)
plot(net, layout=l)

似乎问题在于我将其作为这样的脚本运行:

R --vanilla < script.R

$ R script script.R

这只是一个例子,我的实际脚本真的很长。那我该如何运行呢?

0 个答案:

没有答案