gpt4 book ai didi

r - 在 R 中读取数据集时出错

转载 作者:行者123 更新时间:2023-12-04 17:49:33 24 4
gpt4 key购买 nike

我在读取数据集时遇到问题

我的代码:

require(igraph)
g <- graph(c(0, 1, 1, 2, 2, 0, 1, 3, 3, 4,
4, 5, 5, 3, 4, 6, 6, 7, 7, 8,
8, 6, 9, 10, 10, 11, 11, 9))

错误 :
Error in graph(c(0, 1, 1, 2, 2, 0, 1, 3, 3, 4, 4, 5, 5, 3, 4, 6, 6, 7,  : 
At structure_generators.c:84 : Invalid (negative) vertex id, Invalid vertex id

最佳答案

问题似乎是名称的顶点0

yourgraph <- c(0, 1, 1, 2, 2, 0, 1, 3, 3, 4, 
4, 5, 5, 3, 4, 6, 6, 7, 7, 8,
8, 6, 9, 10, 10, 11, 11, 9)

g <- graph(yourgraph + 1)

关于r - 在 R 中读取数据集时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20730295/

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