R 中 igraph 中的 tkplot

发布于 2024-09-30 22:03:53 字数 423 浏览 2 评论 0原文

这是我的代码以及相应的输出,

> 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄居人 2024-10-07 22:03:53

R 是一种函数式编程语言。 tkplot 有点奇怪(无论如何对于 R 用户来说,显然对于 Pythonista 来说也是如此),因为它返回其创建的数字句柄。请尝试这样做:

tkplot.getcoords(6)

当我在 tkplot 页面上运行示例时,我会从 tkplot.getcoords(1) 获取此示例,因为这是我的第一个 igraph 图:

> tkplot.getcoords(1)
           [,1]      [,2]
 [1,] 334.49319  33.82983
 [2,] 362.43837 286.10754
 [3,] 410.61862 324.98319
 [4,] 148.00673 370.91116
 [5,] 195.69191  20.00000
 [6,]  29.49197 430.00000
 [7,]  20.00000 155.05409
 [8,] 388.51103  62.61010
 [9,] 430.00000 133.44695
[10,] 312.76239 168.90260

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:

tkplot.getcoords(6)

When I run the example on the tkplot page, I then get this from tkplot.getcoords(1) since it was my first igraph plot:

> tkplot.getcoords(1)
           [,1]      [,2]
 [1,] 334.49319  33.82983
 [2,] 362.43837 286.10754
 [3,] 410.61862 324.98319
 [4,] 148.00673 370.91116
 [5,] 195.69191  20.00000
 [6,]  29.49197 430.00000
 [7,]  20.00000 155.05409
 [8,] 388.51103  62.61010
 [9,] 430.00000 133.44695
[10,] 312.76239 168.90260
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文