Last active
August 22, 2022 21:20
-
-
Save Freika/30310d043b16a925017289181d090419 to your computer and use it in GitHub Desktop.
data_sankey.json
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":[ | |
{ | |
"node":"Iron", | |
"name":"Iron" | |
}, | |
{ | |
"node":1, | |
"name":"node1" | |
}, | |
{ | |
"node":"Iron Rod", | |
"name":"Iron Rod" | |
}, | |
{ | |
"node":3, | |
"name":"node3" | |
}, | |
{ | |
"node":4, | |
"name":"node4" | |
} | |
], | |
"links":[ | |
{ | |
"source":"Iron", | |
"target":"Iron Rod", | |
"value":2 | |
}, | |
{ | |
"source":1, | |
"target":"Iron Rod", | |
"value":2 | |
}, | |
{ | |
"source":1, | |
"target":3, | |
"value":2 | |
}, | |
{ | |
"source":"Iron", | |
"target":4, | |
"value":2 | |
}, | |
{ | |
"source":"Iron Rod", | |
"target":3, | |
"value":2 | |
}, | |
{ | |
"source":"Iron Rod", | |
"target":4, | |
"value":2 | |
}, | |
{ | |
"source":3, | |
"target":4, | |
"value":4 | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment