Last active
November 28, 2015 02:48
-
-
Save d3byex/5a8267f90a0d215fcb3e to your computer and use it in GitHub Desktop.
Data for Chapter 11
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"nodes": [ | |
{ "name": "Mike" }, | |
{ "name": "Marcia" }, | |
{ "name": "Chrissy" }, | |
{ "name": "Selena" }, | |
{ "name": "William" }, | |
{ "name": "Mikael" }, | |
{ "name": "Bleu" }, | |
{ "name": "Tagg" }, | |
{ "name": "Bob" }, | |
{ "name": "Mona" } | |
], | |
"edges": [ | |
{ "source": 0, "target": 1, "type": "spouse" }, | |
{ "source": 1, "target": 0, "type": "spouse" }, | |
{ "source": 0, "target": 4, "type": "coworker"}, | |
{ "source": 4, "target": 0, "type": "coworker"}, | |
{ "source": 0, "target": 5, "type": "father" }, | |
{ "source": 5, "target": 0, "type": "son" }, | |
{ "source": 0, "target": 6, "type": "master" }, | |
{ "source": 6, "target": 0, "type": "pet" }, | |
{ "source": 0, "target": 7, "type": "master" }, | |
{ "source": 7, "target": 0, "type": "pet" }, | |
{ "source": 1, "target": 2, "type": "friend" }, | |
{ "source": 2, "target": 1, "type": "friend" }, | |
{ "source": 1, "target": 3, "type": "friend" }, | |
{ "source": 3, "target": 1, "type": "friend" }, | |
{ "source": 1, "target": 5, "type": "mother" }, | |
{ "source": 1, "target": 8, "type": "pet" }, | |
{ "source": 8, "target": 1, "type": "ruler" }, | |
{ "source": 1, "target": 9, "type": "pet" }, | |
{ "source": 9, "target": 1, "type": "ruler" } | |
] | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"nodes": [ | |
{ "name": "Mike" }, | |
{ "name": "Marcia" }, | |
{ "name": "Chrissy" }, | |
{ "name": "Selena" }, | |
{ "name": "William" }, | |
{ "name": "Mikael" }, | |
{ "name": "Bleu" }, | |
{ "name": "Tagg" }, | |
{ "name": "Bob" }, | |
{ "name": "Mona" } | |
], | |
"edges": [ | |
{ "source": 0, "target": 1 }, | |
{ "source": 0, "target": 4 }, | |
{ "source": 0, "target": 5 }, | |
{ "source": 0, "target": 6 }, | |
{ "source": 0, "target": 7 }, | |
{ "source": 1, "target": 2 }, | |
{ "source": 1, "target": 3 }, | |
{ "source": 1, "target": 5 }, | |
{ "source": 1, "target": 8 }, | |
{ "source": 1, "target": 9 } | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment