gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-04 10:38:16 26 4
gpt4 key购买 nike

是否可以在向量或其他数据结构中存储一组图(来自 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]]是 igraphs,你不需要运行 as.igraph在他们。

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

关于r - 如何在 R 中存储图形(来自 igraph 包)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34632167/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com