我需要在R书库中找到每个单个节点(国家,作者,大学)的程度,亲密性和中间性。
我尝试过:
netstat <- networkStat(NetMatrix, stat = "all", type = "degree")
这给了我所有网络的平均数量。
此外,我尝试加载:
library (igraph)
library (readr)
library (haven)
library (ggplot2)
listing_EdgeList <- M
listing_Graph=graph.data.frame(listing_EdgeList, directed=F)
listing_Graph
betweenness(listing_Graph, directed=FALSE)
degree (listing_Graph, mode="all")
degree(listing_Graph, mode = "all")
my_network_AllDegree <- degree(listing_Graph, mode = "all")
my_network_AllDegree <- as.data.frame(my_network_AllDegree)
但是它返回了我的废话表。
感谢您的帮助-您将救我!