如何旋转igraph网络图?

时间:2018-09-03 04:50:43

标签: r igraph

我正在尝试旋转基于R包的igraph网络图。在igraph指南中,没有足够的解释如何使用R代码

tk_rotate(tkp.id, degree = NULL, rad = NULL) 

1 个答案:

答案 0 :(得分:1)

对于R软件包igraph,根据文档:

  

tk_rotate旋转图形,其参数可以以度或弧度给出。

特别值得注意的是参数tkp.id。确保将tkplot窗口分配给该值,以便可以在函数中将其引用为tkp.id

  

tkp.id要关闭/重塑等的tkplot窗口的ID。

以下是一个可重复使用的示例,演示了其用法:

library(igraph)
#> 
#> Attaching package: 'igraph'
#> The following objects are masked from 'package:stats':
#> 
#>     decompose, spectrum
#> The following object is masked from 'package:base':
#> 
#>     union
g <- make_ring(10)
x <- tkplot(g)
tk_rotate(x, degree = NULL, rad = NULL)

reprex package(v0.2.0)于2018-09-03创建。