开发者

Export igraph Issues in R

开发者 https://www.devze.com 2023-01-20 14:40 出处:网络
I have generated a few network graphs in igraph.I like to use tkplot, however, aft开发者_如何学JAVAer resizing the window manually and changing the layout, my machine freezes up when I try to export o

I have generated a few network graphs in igraph. I like to use tkplot, however, aft开发者_如何学JAVAer resizing the window manually and changing the layout, my machine freezes up when I try to export or even take a screenshot of the graph.

Any ideas? My machine is Windows XP Pro and has 2GB memory.

Many thanks in advance.


I can't reproduce your error on Windows 7. What you can try is

  1. to set the canvas size yourself in the tkplot command
  2. to use the function tkplot.export.postscript to call for the export dialog.

This can be done by:

g <- graph.ring(10)
x <- tkplot(g,canvas.width=800, canvas.height=800)
tkplot.export.postscript(x)

Worst case scenario you could extract the coordinates using tkplot.getcoords(x) and use the base plot functions to reconstruct the graph. This is a whole lot trickier off course, as you have to keep track of which vertices are connected and which not.

0

精彩评论

暂无评论...
验证码 换一张
取 消