gpt4 book ai didi

具有属性的 R igraph add.edges()

转载 作者:行者123 更新时间:2023-12-02 05:36:46 25 4
gpt4 key购买 nike

在 add.edges() 期间分配一个属性,例如宽度:

g <- add.edges(g,c(from,to), attr= width <- 1 ) 

Error message:
please supply names for attributes

最佳答案

你需要给它分配一个命名列表:

g <- graph.adjacency(matrix(0,2,2))
g <- add.edges(g,c(1,2),attr=list(width=10))

使用您使用的代码,您将 1 分配给变量 width,然后分配 width 的值,即 1,到参数 attr

关于具有属性的 R igraph add.edges(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11577830/

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