我正在分析一个电子邮件网络。我在 R 上的有向 igraph 中加载了以下信息:
顶点类型:人员、电子邮件
V(g)[ type == "person" ]
V(g)[ type == "email" ]
边缘类型:发送、接收
E(g)[ type == "send" ]
E(g)[ type == "receive" ]
例如:
John --send--> email1 --receive--> Mary
John --send--> email2 --receive--> Mary
Mary --send--> email3 --receive--> John
我想生成电子邮件活动的摘要,边缘带有代表电子邮件数量的属性:
John --2--> Mary
Mary --1--> John
我该怎么做呢?
谢谢,
穆龙