Created
September 3, 2016 22:45
-
-
Save ko31/b78ff8cf0107d7f1d29fc67323ec5d3e to your computer and use it in GitHub Desktop.
D3.js の Sankey Diagram で使う 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":[ | |
{"name":"クラーク国際"}, | |
{"name":"北海"}, | |
{"name":"嘉手納"}, | |
{"name":"北海道"}, | |
{"name":"東京"}, | |
{"name":"沖縄"} | |
], | |
"links":[ | |
{"source":0,"target":3,"value":10}, | |
{"source":0,"target":4,"value":8}, | |
{"source":1,"target":3,"value":18}, | |
{"source":2,"target":5,"value":18} | |
]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment