My colleague and I are working with a D3 visualization. Specifically we are starting with this example. This visualization appears to use some kind of json related to the flare API
In the sample json, there's lines like:
"name": "cluster",
"children": [
{"name": "AgglomerativeCluster", "size": 3938},
{"name": "CommunityStructure", "size": 3812},
{"name": "HierarchicalCluster", "size": 6714},
{"name": "MergeEdge", "size": 743}
I understand that stuff after "name" relates to a Flare class. What I can't seem to find, despite lots of googling, is what exactly "size" is and what its units are? More generally, where can one find some kind of specification on flare's json format and what it means?