我正在分析一个电子邮件网络。我在R:
上的有向图中加载了以下信息顶点类型:人物,电子邮件
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
我将如何做到这一点?
谢谢,
Mulone