Skip to content

Instantly share code, notes, and snippets.

@colinmegill
Last active June 29, 2018 04:01
Show Gist options
  • Save colinmegill/2648aff90b12061fb3640f73fb8fd3a7 to your computer and use it in GitHub Desktop.
Save colinmegill/2648aff90b12061fb3640f73fb8fd3a7 to your computer and use it in GitHub Desktop.
Six person dinner party complete graph v0.1
{
"nodes": [
{"id": "A", "group": 1},
{"id": "B", "group": 1},
{"id": "C", "group": 1},
{"id": "D", "group": 1},
{"id": "E", "group": 1},
{"id": "F", "group": 1}
],
"links": [
{"source": "A", "target": "B", "value": 1},
{"source": "A", "target": "C", "value": 1},
{"source": "A", "target": "D", "value": 1},
{"source": "A", "target": "E", "value": 1},
{"source": "A", "target": "F", "value": 1},
{"source": "B", "target": "C", "value": 1},
{"source": "B", "target": "D", "value": 1},
{"source": "B", "target": "E", "value": 1},
{"source": "B", "target": "F", "value": 1},
{"source": "C", "target": "D", "value": 1},
{"source": "C", "target": "E", "value": 1},
{"source": "C", "target": "F", "value": 1},
{"source": "D", "target": "E", "value": 1},
{"source": "D", "target": "F", "value": 1}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment