I'm trying to create a network which maps connections between accounts and emails where there are many-to-many relationships. The data looks something like
Account | Email
- 123 | jane_doe@123.com
- 152 | john_doe@123.com
- 123 | john_doe@123.com
So obviously there are duplicates, and igraph does not like this. Along with this, my version of R will not allow me to use the SNA package, since I cannot download the statnet.common package.
I have tried looking at different tutorials for this, but all I've been able to see is cases where you have one column and want to create edges within that column, not between two columns with duplicates.