R 中 igraph 中的 tkplot
这是我的代码以及相应的输出,
> tkplot(g.2,vertex.label=nodes,
+ canvas.width=700,
+ canvas.height=700)
[1] 6
> ?tkplot
Warning message:
In rm(list = cmd, envir = .tkplot.env) : object 'tkp.6' not found
无论在构建和查看绘图后运行什么命令,我都会收到此错误。
这可能是显而易见的,但我无法从图中获取数据。
> tkp.6.getcoords
Error: object 'tkp.6.getcoords' not found
有什么想法吗?在 Windows 2007 专业版上。
Here is my code with the corresponding output
> tkplot(g.2,vertex.label=nodes,
+ canvas.width=700,
+ canvas.height=700)
[1] 6
> ?tkplot
Warning message:
In rm(list = cmd, envir = .tkplot.env) : object 'tkp.6' not found
I get this error no matter what command I run after building and viewing my plot.
This may be obvious, but I can't get at the data from the plot.
> tkp.6.getcoords
Error: object 'tkp.6.getcoords' not found
Any thoughts? On Windows 2007 Pro.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
R 是一种函数式编程语言。 tkplot 有点奇怪(无论如何对于 R 用户来说,显然对于 Pythonista 来说也是如此),因为它返回其创建的数字句柄。请尝试这样做:
当我在 tkplot 页面上运行示例时,我会从 tkplot.getcoords(1) 获取此示例,因为这是我的第一个 igraph 图:
R is a functional programming language. tkplot is a bit odd (for R users anyway and apparently for you Pythonistas as well) in that it returns numeric handles to its creations. Try this instead:
When I run the example on the tkplot page, I then get this from tkplot.getcoords(1) since it was my first igraph plot: