如何在R中存储图形(来自igraph包)?

是否可以在矢量或其他数据结构中存储一组图形(来自igraph)?

我试图用这种方式做到这一点:

require('igraph')

g1 <- make_tree(10,3)
g2 <- make_tree(30,3)

gs <- c(g1,g2)

as.igraph(gs[1])

但它不起作用.我收到了错误:

Error in UseMethod("as.igraph") : 
  no applicable method for 'as.igraph' applied to an object of class "list"

最佳答案 您可以将它们存储在列表中:

gs <- list(g1,g2)
class(gs[[1]])
# [1] "igraph"

gs [[i]]是igraph,你不需要在它们上运行as.igraph.

此外,根据文档,as.igraph函数只能用于codeigraphHRG对象.

点赞