Skip to content

Instantly share code, notes, and snippets.

@Freika
Last active August 22, 2022 21:20
Show Gist options
  • Save Freika/30310d043b16a925017289181d090419 to your computer and use it in GitHub Desktop.
Save Freika/30310d043b16a925017289181d090419 to your computer and use it in GitHub Desktop.
data_sankey.json
{
"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