[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 583: sizeof(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/phpbb/session.php on line 639: sizeof(): Parameter must be an array or an object that implements Countable
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
[phpBB Debug] PHP Warning: in file [ROOT]/includes/functions.php on line 4516: Cannot modify header information - headers already sent by (output started at [ROOT]/includes/functions.php:3262)
Gephi forums •Adjacency list, but all combinations
Page 1 of 1

Adjacency list, but all combinations

Posted: 31 Jan 2019 13:19
by CaseLawMiner
I have tried looking for an answer, but to no avail. My problem is the following: I have a number of names and I would like to construct a network of with their connections. Generally, they work in groups of three. So, let's assume they follow this scheme:

Code: Select all

ROW 1: Alice, Bob, Carol
ROW 2: John, Kate, Laura
My problem is that, the way I understand it, this would make Alice-> Bob; Alice -> Carol. Not, however Bob -> Carol.

In order to do that right from the outset, I would need to have additional rows with the different combinations. In other words, I would need:

Code: Select all

ROW 1: Alice, Bob, Carol
ROW 2: Bob, Alice, Carol
ROW 3: Carol, Alice, Bob
I am not sure, however, how this could be done. Can anybody suggest a solution?

Thanks!