如何在R中具有断开连接的组件的网络上计算接近度集中度度量?

如何解决如何在R中具有断开连接的组件的网络上计算接近度集中度度量?

我想在组件断开连接的网络上计算接近度集中度度量。 closeness中的igraph函数在此类图上没有给出有意义的结果。 (see

然后我遇到this site,那里的解释是,也可以在具有断开连接的组件的图上测量接近度。

建议使用以下代码来实现此目的:

# Load tnet
library(tnet)
 
# Load network 
# Node K is assigned node id 8 instead of 10 as isolates at the end of id sequences are not recorded in edgelists
net <- cbind(
  i=c(1,1,2,3,4,5,6,7,9,10,11),j=c(2,11,10),w=c(1,1))
 
# Calculate measures
closeness_w(net,gconly=FALSE)

就我而言,我有一个交易数据,因此我基于此数据构建的网络是directedweighted。权重由1/(transaction amount)组成。

这是我的示例数据:

structure(list(id = c(2557L,1602L,18669L,35900L,48667L,51341L
),from = c("5370","6390","5370","8934","5370"),to = c("5636","8933","8483","7626"),date = structure(c(13099,13113,13117,13179,13238,13249),class = "Date"),amount = c(2921,8000,169.2,71.5,14.6,4214)),row.names = c(NA,-6L),class = "data.frame")

我使用以下代码实现我想要的:

df2 <- select(df,c(from,to,amount)) %>% 
    group_by(from,to) %>% mutate(weights=1/sum(amount)) %>% select(-amount) %>% distinct
  
  network <- cbind(df2$from,df2$to,df2$weights)

  cl <- closeness_w(network,directed = T,gconly=FALSE)  # here it gives the error: "Error in net[,"w"]^alpha : non-numeric argument to binary operator"

  # so I modify from and to columns as follows to solve the error mentioned above
  df2$from <- as.integer(df2$from)
  df2$to <- as.integer(df2$to)
  # then I run the code again
  network <- cbind(df2$from,df2$weights)
  cl <- closeness_w(network,gconly=FALSE)

但是,输出结果不像网站上仅包含每个节点的接近度分数的输出,而是创建了许多具有0值的行,我不知道为什么。

我得到的输出如下:

     node  closeness    n.closeness
   [1,]    1 0.00000000 0.000000000000
   [2,]    2 0.00000000 0.000000000000
   [3,]    3 0.00000000 0.000000000000
   [4,]    4 0.00000000 0.000000000000
   [5,]    5 0.00000000 0.000000000000
   ...........................................................
 [330,]  330 0.00000000 0.000000000000
 [331,]  331 0.00000000 0.000000000000
 [332,]  332 0.00000000 0.000000000000
 [333,]  333 0.00000000 0.000000000000
 [ reached getOption("max.print") -- omitted 8600 rows ]

此外,网站上给出的数据的ij列中的输入是对等的,即1-> 2存在,而2-> 1存在。但是我的数据不是那样,因此我的数据5370汇款到5636,但是5636却没有汇款到5370。因此,如何在这种定向的交易数据网络上正确计算接近度度量。有没有人尝试过类似的计算?

编辑: 由于权重在closeness_w函数中不被视为距离,而是被视为强度,因此我应该将weights确定为sum(amount)而不是1/sum(amount)

解决方法

之所以获得许多零值行是因为它为节点1到8934(矩阵中的最大值)提供了一个接近值。如果您过滤数据框中的值,则会找到所需的值:

cl <- closeness_w(df2,directed = T,gconly=FALSE)
cl[cl[,"node"] %in% c(df2$from),]

     node  closeness  n.closeness
[1,] 5370 1.37893704 1.543644e-04
[2,] 6390 0.03668555 4.106745e-06
[3,] 8934 5.80008056 6.492870e-04

方向已被考虑,如果您过滤“至”节点,则只会看到5370的值:

cl[cl[,"node"] %in% c(df2$to),]

     node closeness  n.closeness
[1,] 5370  1.378937 0.0001543644
[2,] 5636  0.000000 0.0000000000
[3,] 7626  0.000000 0.0000000000
[4,] 8483  0.000000 0.0000000000
[5,] 8933  0.000000 0.0000000000

如果您返回下面的示例,如果从数据中间删除节点,则会看到它为丢失的节点提供零,然后尝试设置directed = F,您会注意到差异。

更新

如果您想要创建网络的另一种方法,则可以在创建df2之后将其传递给closeness_w函数,并且节点标签将成为索引,并且节点列将减少为1:n:

df2 <- df %>% 
  group_by(from,to) %>% 
  mutate(weights = 1/sum(amount)) %>% 
  select(from,to,weights) %>% 
  distinct

cl <- closeness_w(df2,gconly=FALSE)
cl 

     node  closeness n.closeness
5370    1 1.37893704 0.229822840
5636    2 0.00000000 0.000000000
7626    3 0.00000000 0.000000000
8483    4 0.00000000 0.000000000
8933    5 0.00000000 0.000000000
6390    6 0.03668555 0.006114259
8934    7 5.80008056 0.966680093
,

您引用的网页没有解释“紧密度可以应用于断开的网络”。相反,它建议计算与接近度完全不同的数量。

他们计算的内容实际上称为全局效率,并在本文中提出:

您将在某些软件包中找到实现。我也为igraph实现了此功能,它将被包含在C / igraph的0.9版本中(大概也在R / igraph的某些版本中)。 from IGraph/M已经可以访问,它是igraph的Mathematica界面。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


使用本地python环境可以成功执行 import pandas as pd import matplotlib.pyplot as plt # 设置字体 plt.rcParams[&#39;font.sans-serif&#39;] = [&#39;SimHei&#39;] # 能正确显示负号 p
错误1:Request method ‘DELETE‘ not supported 错误还原:controller层有一个接口,访问该接口时报错:Request method ‘DELETE‘ not supported 错误原因:没有接收到前端传入的参数,修改为如下 参考 错误2:cannot r
错误1:启动docker镜像时报错:Error response from daemon: driver failed programming external connectivity on endpoint quirky_allen 解决方法:重启docker -&gt; systemctl r
错误1:private field ‘xxx‘ is never assigned 按Altʾnter快捷键,选择第2项 参考:https://blog.csdn.net/shi_hong_fei_hei/article/details/88814070 错误2:启动时报错,不能找到主启动类 #
报错如下,通过源不能下载,最后警告pip需升级版本 Requirement already satisfied: pip in c:\users\ychen\appdata\local\programs\python\python310\lib\site-packages (22.0.4) Coll
错误1:maven打包报错 错误还原:使用maven打包项目时报错如下 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
错误1:服务调用时报错 服务消费者模块assess通过openFeign调用服务提供者模块hires 如下为服务提供者模块hires的控制层接口 @RestController @RequestMapping(&quot;/hires&quot;) public class FeignControl
错误1:运行项目后报如下错误 解决方案 报错2:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project sb 解决方案:在pom.
参考 错误原因 过滤器或拦截器在生效时,redisTemplate还没有注入 解决方案:在注入容器时就生效 @Component //项目运行时就注入Spring容器 public class RedisBean { @Resource private RedisTemplate&lt;String
使用vite构建项目报错 C:\Users\ychen\work&gt;npm init @vitejs/app @vitejs/create-app is deprecated, use npm init vite instead C:\Users\ychen\AppData\Local\npm-
参考1 参考2 解决方案 # 点击安装源 协议选择 http:// 路径填写 mirrors.aliyun.com/centos/8.3.2011/BaseOS/x86_64/os URL类型 软件库URL 其他路径 # 版本 7 mirrors.aliyun.com/centos/7/os/x86
报错1 [root@slave1 data_mocker]# kafka-console-consumer.sh --bootstrap-server slave1:9092 --topic topic_db [2023-12-19 18:31:12,770] WARN [Consumer clie
错误1 # 重写数据 hive (edu)&gt; insert overwrite table dwd_trade_cart_add_inc &gt; select data.id, &gt; data.user_id, &gt; data.course_id, &gt; date_format(
错误1 hive (edu)&gt; insert into huanhuan values(1,&#39;haoge&#39;); Query ID = root_20240110071417_fe1517ad-3607-41f4-bdcf-d00b98ac443e Total jobs = 1
报错1:执行到如下就不执行了,没有显示Successfully registered new MBean. [root@slave1 bin]# /usr/local/software/flume-1.9.0/bin/flume-ng agent -n a1 -c /usr/local/softwa
虚拟及没有启动任何服务器查看jps会显示jps,如果没有显示任何东西 [root@slave2 ~]# jps 9647 Jps 解决方案 # 进入/tmp查看 [root@slave1 dfs]# cd /tmp [root@slave1 tmp]# ll 总用量 48 drwxr-xr-x. 2
报错1 hive&gt; show databases; OK Failed with exception java.io.IOException:java.lang.RuntimeException: Error in configuring object Time taken: 0.474 se
报错1 [root@localhost ~]# vim -bash: vim: 未找到命令 安装vim yum -y install vim* # 查看是否安装成功 [root@hadoop01 hadoop]# rpm -qa |grep vim vim-X11-7.4.629-8.el7_9.x
修改hadoop配置 vi /usr/local/software/hadoop-2.9.2/etc/hadoop/yarn-site.xml # 添加如下 &lt;configuration&gt; &lt;property&gt; &lt;name&gt;yarn.nodemanager.res