我无法弄清楚为什么degree.distribution
不适合我。我已经尝试过 R i386 3.0.0 和 R x64 3.0.0。这是生成图表并显示其分布的简单脚本:
library(igraph)
testG = graph.empty(n=10, directed=TRUE)
for(row in 1 : 5) {
src = row
dest = row + 1
testG = add.edges(testG, rbind(src, as.numeric(dest)))
if(row %% 2 == 0) {
dest = row + 2
testG = add.edges(testG, rbind(src, as.numeric(dest)))
}
}
testG
testD = degree.distribution(testG, v=V(testG), cumulative=FALSE)
testD
plot(1 : length(testD), testD, "h", main="Website Graph Degree Distribution", xlab="Degree", ylab="Probability of Degree")
degree(testG)
testG 显示:(IGRAPH D--- 10 7 --
有道理)。testD 显示:(NULL
为什么?)。该图在 (1,1) 处只有一个值。但是该图包含具有其他度数的节点,如 degree(testG) 的输出所示,即[1,3,2,4,2,2,0,0,0,0]
.