Arc Diagram Example
An arc diagram visualizes a network using a one-dimensional layout of nodes and circular arcs to represent links. Though an arc diagram may not always convey the overall structure of the graph as effectively as a two-dimensional layout, with a good ordering of nodes one can identify cliques and bridges. Arc diagrams were originally invented to depict repeated musical structures in Martin Wattenberg’s The Shape of Song.
Vega JSON Specification <>
{
"$schema": "https://vega.github.io/schema/vega/v5.json",
"description": "An arc diagram depicting character co-occurrence in the novel Les Misérables.",
"width": 770,
"padding": 5,
"data": [
{
"name": "edges",
"url": "data/miserables.json",
"format": {"type": "json", "property": "links"}
},
{
"name": "sourceDegree",
"source": "edges",
"transform": [
{"type": "aggregate", "groupby": ["source"]}
]
},
{
"name": "targetDegree",
"source": "edges",
"transform": [
{"type": "aggregate", "groupby": ["target"]}
]
},
{
"name": "nodes",
"url": "data/miserables.json",
"format": {"type": "json", "property": "nodes"},
"transform": [
{ "type": "window", "ops": ["rank"], "as": ["order"] },
{
"type": "lookup", "from": "sourceDegree", "key": "source",
"fields": ["index"], "as": ["sourceDegree"],
"default": {"count": 0}
},
{
"type": "lookup", "from": "targetDegree", "key": "target",
"fields": ["index"], "as": ["targetDegree"],
"default": {"count": 0}
},
{
"type": "formula", "as": "degree",
"expr": "datum.sourceDegree.count + datum.targetDegree.count"
}
]
}
],
"scales": [
{
"name": "position",
"type": "band",
"domain": {"data": "nodes", "field": "order", "sort": true},
"range": "width"
},
{
"name": "color",
"type": "ordinal",
"range": "category",
"domain": {"data": "nodes", "field": "group"}
}
],
"marks": [
{
"type": "symbol",
"name": "layout",
"interactive": false,
"from": {"data": "nodes"},
"encode": {
"enter": {
"opacity": {"value": 0}
},
"update": {
"x": {"scale": "position", "field": "order"},
"y": {"value": 0},
"size": {"field": "degree", "mult": 5, "offset": 10},
"fill": {"scale": "color", "field": "group"}
}
}
},
{
"type": "path",
"from": {"data": "edges"},
"encode": {
"update": {
"stroke": {"value": "#000"},
"strokeOpacity": {"value": 0.2},
"strokeWidth": {"field": "value"}
}
},
"transform": [
{
"type": "lookup", "from": "layout", "key": "datum.index",
"fields": ["datum.source", "datum.target"],
"as": ["sourceNode", "targetNode"]
},
{
"type": "linkpath",
"sourceX": {"expr": "min(datum.sourceNode.x, datum.targetNode.x)"},
"targetX": {"expr": "max(datum.sourceNode.x, datum.targetNode.x)"},
"sourceY": {"expr": "0"},
"targetY": {"expr": "0"},
"shape": "arc"
}
]
},
{
"type": "symbol",
"from": {"data": "layout"},
"encode": {
"update": {
"x": {"field": "x"},
"y": {"field": "y"},
"fill": {"field": "fill"},
"size": {"field": "size"}
}
}
},
{
"type": "text",
"from": {"data": "nodes"},
"encode": {
"update": {
"x": {"scale": "position", "field": "order"},
"y": {"value": 7},
"fontSize": {"value": 9},
"align": {"value": "right"},
"baseline": {"value": "middle"},
"angle": {"value": -90},
"text": {"field": "name"}
}
}
}
]
}