Skip to content

Instantly share code, notes, and snippets.

@jrladd
Forked from mbostock/.block
Last active July 6, 2016 18:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jrladd/5ede96a76360f39e4b0aa1f93706547a to your computer and use it in GitHub Desktop.
Save jrladd/5ede96a76360f39e4b0aa1f93706547a to your computer and use it in GitHub Desktop.
LCSH Tag Network
<!DOCTYPE html>
<meta charset="utf-8">
<style>
.node {
stroke: #fff;
stroke-width: 1.5px;
}
.link {
stroke: #999;
stroke-opacity: .6;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var width = 960,
height = 500;
var color = d3.scale.category10();
var size = d3.scale.log()
.domain([1, 1.06])
.range([5,10]);
var force = d3.layout.force()
.charge(-120)
.linkDistance(30)
.gravity(.05)
.friction(0.5)
.size([width, height]);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height)
.call(d3.behavior.zoom().on('zoom', zoomed));
var container = svg.append("g");
d3.json("network_lcsh.json", function(error, graph) {
if (error) throw error;
var linkNodes = [];
graph.links.forEach(function(link) {
linkNodes.push({
source: graph.nodes[link.source],
target: graph.nodes[link.target]
});
});
force
.nodes(graph.nodes.concat(linkNodes))
.links(graph.links)
.start();
var link = container.selectAll(".link")
.data(graph.links)
.enter().append("line")
.attr("class", "link")
.style("stroke-width", function(d) { return Math.sqrt(d.weight); });
var node = container.selectAll(".node")
.data(graph.nodes)
.enter().append("circle")
.attr("class", "node")
.attr("r", function(d) { return size(d.betweenness + 1); })
.style("fill", function(d) { return color(d.position_in_compound); })
.call(force.drag);
node.append("title")
.text(function(d) { return d.id; });
var linkNode = svg.selectAll(".link-node")
.data(linkNodes)
.enter().append("circle")
.attr("class", "link-node")
.attr("r", 2)
.style("fill", "#ccc");
force.on("tick", function() {
link.attr("x1", function(d) { return d.source.x; })
.attr("y1", function(d) { return d.source.y; })
.attr("x2", function(d) { return d.target.x; })
.attr("y2", function(d) { return d.target.y; });
node.attr("cx", function(d) { return d.x; })
.attr("cy", function(d) { return d.y; });
});
});
function zoomed() {
container.attr("transform", "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
}
</script>
{
"directed": false,
"graph": {},
"links": [
{
"source": 0,
"target": 284,
"weight": 1
},
{
"source": 0,
"target": 345,
"weight": 1
},
{
"source": 0,
"target": 261,
"weight": 2
},
{
"source": 1,
"target": 261,
"weight": 1
},
{
"source": 1,
"target": 229,
"weight": 1
},
{
"source": 1,
"target": 25,
"weight": 1
},
{
"source": 2,
"target": 271,
"weight": 1
},
{
"source": 2,
"target": 412,
"weight": 1
},
{
"source": 2,
"target": 122,
"weight": 5
},
{
"source": 2,
"target": 330,
"weight": 1
},
{
"source": 2,
"target": 390,
"weight": 6
},
{
"source": 2,
"target": 354,
"weight": 1
},
{
"source": 2,
"target": 246,
"weight": 1
},
{
"source": 2,
"target": 215,
"weight": 3
},
{
"source": 2,
"target": 115,
"weight": 9
},
{
"source": 2,
"target": 393,
"weight": 1
},
{
"source": 2,
"target": 348,
"weight": 3
},
{
"source": 2,
"target": 5,
"weight": 6
},
{
"source": 2,
"target": 296,
"weight": 1
},
{
"source": 2,
"target": 53,
"weight": 1
},
{
"source": 2,
"target": 360,
"weight": 1
},
{
"source": 2,
"target": 332,
"weight": 1
},
{
"source": 2,
"target": 192,
"weight": 1
},
{
"source": 2,
"target": 413,
"weight": 1
},
{
"source": 2,
"target": 414,
"weight": 1
},
{
"source": 2,
"target": 194,
"weight": 1
},
{
"source": 2,
"target": 351,
"weight": 1
},
{
"source": 2,
"target": 197,
"weight": 1
},
{
"source": 2,
"target": 27,
"weight": 3
},
{
"source": 2,
"target": 166,
"weight": 1
},
{
"source": 2,
"target": 399,
"weight": 1
},
{
"source": 2,
"target": 310,
"weight": 1
},
{
"source": 2,
"target": 110,
"weight": 1
},
{
"source": 2,
"target": 266,
"weight": 1
},
{
"source": 2,
"target": 171,
"weight": 11
},
{
"source": 2,
"target": 378,
"weight": 1
},
{
"source": 2,
"target": 340,
"weight": 8
},
{
"source": 2,
"target": 291,
"weight": 1
},
{
"source": 2,
"target": 66,
"weight": 2
},
{
"source": 2,
"target": 344,
"weight": 1
},
{
"source": 2,
"target": 86,
"weight": 2
},
{
"source": 2,
"target": 346,
"weight": 2
},
{
"source": 2,
"target": 385,
"weight": 11
},
{
"source": 2,
"target": 398,
"weight": 1
},
{
"source": 2,
"target": 41,
"weight": 1
},
{
"source": 2,
"target": 153,
"weight": 1
},
{
"source": 2,
"target": 212,
"weight": 1
},
{
"source": 3,
"target": 315,
"weight": 1
},
{
"source": 3,
"target": 115,
"weight": 10
},
{
"source": 3,
"target": 219,
"weight": 1
},
{
"source": 3,
"target": 359,
"weight": 1
},
{
"source": 3,
"target": 27,
"weight": 3
},
{
"source": 3,
"target": 126,
"weight": 2
},
{
"source": 3,
"target": 75,
"weight": 1
},
{
"source": 3,
"target": 128,
"weight": 2
},
{
"source": 3,
"target": 129,
"weight": 2
},
{
"source": 3,
"target": 324,
"weight": 2
},
{
"source": 3,
"target": 88,
"weight": 2
},
{
"source": 3,
"target": 162,
"weight": 1
},
{
"source": 3,
"target": 55,
"weight": 2
},
{
"source": 3,
"target": 133,
"weight": 2
},
{
"source": 3,
"target": 367,
"weight": 2
},
{
"source": 3,
"target": 301,
"weight": 6
},
{
"source": 3,
"target": 163,
"weight": 2
},
{
"source": 3,
"target": 171,
"weight": 7
},
{
"source": 3,
"target": 423,
"weight": 2
},
{
"source": 3,
"target": 286,
"weight": 1
},
{
"source": 3,
"target": 331,
"weight": 4
},
{
"source": 3,
"target": 79,
"weight": 1
},
{
"source": 3,
"target": 168,
"weight": 2
},
{
"source": 3,
"target": 40,
"weight": 1
},
{
"source": 3,
"target": 306,
"weight": 2
},
{
"source": 3,
"target": 377,
"weight": 2
},
{
"source": 3,
"target": 82,
"weight": 5
},
{
"source": 3,
"target": 411,
"weight": 1
},
{
"source": 3,
"target": 111,
"weight": 1
},
{
"source": 3,
"target": 404,
"weight": 2
},
{
"source": 3,
"target": 342,
"weight": 2
},
{
"source": 3,
"target": 307,
"weight": 2
},
{
"source": 3,
"target": 432,
"weight": 4
},
{
"source": 3,
"target": 125,
"weight": 1
},
{
"source": 3,
"target": 47,
"weight": 1
},
{
"source": 3,
"target": 281,
"weight": 2
},
{
"source": 3,
"target": 143,
"weight": 2
},
{
"source": 4,
"target": 115,
"weight": 1
},
{
"source": 4,
"target": 171,
"weight": 1
},
{
"source": 5,
"target": 189,
"weight": 2
},
{
"source": 5,
"target": 390,
"weight": 2
},
{
"source": 5,
"target": 61,
"weight": 1
},
{
"source": 5,
"target": 246,
"weight": 1
},
{
"source": 5,
"target": 115,
"weight": 6
},
{
"source": 6,
"target": 27,
"weight": 1
},
{
"source": 6,
"target": 115,
"weight": 1
},
{
"source": 7,
"target": 340,
"weight": 2
},
{
"source": 8,
"target": 340,
"weight": 3
},
{
"source": 8,
"target": 131,
"weight": 2
},
{
"source": 8,
"target": 390,
"weight": 1
},
{
"source": 9,
"target": 340,
"weight": 1
},
{
"source": 10,
"target": 350,
"weight": 2
},
{
"source": 10,
"target": 160,
"weight": 2
},
{
"source": 11,
"target": 278,
"weight": 1
},
{
"source": 12,
"target": 120,
"weight": 1
},
{
"source": 13,
"target": 153,
"weight": 1
},
{
"source": 14,
"target": 311,
"weight": 1
},
{
"source": 15,
"target": 340,
"weight": 1
},
{
"source": 16,
"target": 340,
"weight": 1
},
{
"source": 16,
"target": 72,
"weight": 1
},
{
"source": 17,
"target": 309,
"weight": 1
},
{
"source": 17,
"target": 171,
"weight": 1
},
{
"source": 18,
"target": 355,
"weight": 2
},
{
"source": 19,
"target": 228,
"weight": 2
},
{
"source": 19,
"target": 171,
"weight": 2
},
{
"source": 20,
"target": 27,
"weight": 1
},
{
"source": 20,
"target": 53,
"weight": 4
},
{
"source": 20,
"target": 275,
"weight": 1
},
{
"source": 20,
"target": 171,
"weight": 3
},
{
"source": 21,
"target": 348,
"weight": 2
},
{
"source": 21,
"target": 171,
"weight": 2
},
{
"source": 22,
"target": 208,
"weight": 1
},
{
"source": 23,
"target": 340,
"weight": 1
},
{
"source": 24,
"target": 379,
"weight": 1
},
{
"source": 25,
"target": 261,
"weight": 1
},
{
"source": 25,
"target": 229,
"weight": 1
},
{
"source": 26,
"target": 170,
"weight": 2
},
{
"source": 27,
"target": 387,
"weight": 2
},
{
"source": 27,
"target": 388,
"weight": 5
},
{
"source": 27,
"target": 121,
"weight": 2
},
{
"source": 27,
"target": 122,
"weight": 3
},
{
"source": 27,
"target": 317,
"weight": 3
},
{
"source": 27,
"target": 275,
"weight": 1
},
{
"source": 27,
"target": 86,
"weight": 6
},
{
"source": 27,
"target": 394,
"weight": 4
},
{
"source": 27,
"target": 348,
"weight": 2
},
{
"source": 27,
"target": 53,
"weight": 1
},
{
"source": 27,
"target": 130,
"weight": 1
},
{
"source": 27,
"target": 155,
"weight": 1
},
{
"source": 27,
"target": 324,
"weight": 10
},
{
"source": 27,
"target": 328,
"weight": 2
},
{
"source": 27,
"target": 390,
"weight": 6
},
{
"source": 27,
"target": 264,
"weight": 2
},
{
"source": 27,
"target": 111,
"weight": 4
},
{
"source": 27,
"target": 365,
"weight": 1
},
{
"source": 27,
"target": 115,
"weight": 31
},
{
"source": 28,
"target": 221,
"weight": 1
},
{
"source": 29,
"target": 280,
"weight": 1
},
{
"source": 30,
"target": 50,
"weight": 1
},
{
"source": 30,
"target": 115,
"weight": 3
},
{
"source": 30,
"target": 307,
"weight": 3
},
{
"source": 30,
"target": 171,
"weight": 3
},
{
"source": 31,
"target": 115,
"weight": 1
},
{
"source": 31,
"target": 171,
"weight": 1
},
{
"source": 32,
"target": 228,
"weight": 2
},
{
"source": 32,
"target": 171,
"weight": 2
},
{
"source": 33,
"target": 369,
"weight": 1
},
{
"source": 34,
"target": 340,
"weight": 1
},
{
"source": 35,
"target": 412,
"weight": 4
},
{
"source": 35,
"target": 409,
"weight": 2
},
{
"source": 36,
"target": 83,
"weight": 2
},
{
"source": 37,
"target": 219,
"weight": 1
},
{
"source": 37,
"target": 349,
"weight": 1
},
{
"source": 38,
"target": 246,
"weight": 1
},
{
"source": 38,
"target": 171,
"weight": 1
},
{
"source": 39,
"target": 176,
"weight": 2
},
{
"source": 41,
"target": 189,
"weight": 1
},
{
"source": 42,
"target": 182,
"weight": 1
},
{
"source": 43,
"target": 243,
"weight": 1
},
{
"source": 44,
"target": 340,
"weight": 1
},
{
"source": 45,
"target": 246,
"weight": 2
},
{
"source": 46,
"target": 287,
"weight": 1
},
{
"source": 46,
"target": 340,
"weight": 1
},
{
"source": 47,
"target": 86,
"weight": 1
},
{
"source": 47,
"target": 115,
"weight": 4
},
{
"source": 47,
"target": 171,
"weight": 4
},
{
"source": 48,
"target": 115,
"weight": 2
},
{
"source": 48,
"target": 171,
"weight": 2
},
{
"source": 49,
"target": 340,
"weight": 3
},
{
"source": 49,
"target": 346,
"weight": 1
},
{
"source": 50,
"target": 115,
"weight": 1
},
{
"source": 50,
"target": 307,
"weight": 1
},
{
"source": 50,
"target": 171,
"weight": 1
},
{
"source": 51,
"target": 115,
"weight": 1
},
{
"source": 51,
"target": 340,
"weight": 2
},
{
"source": 52,
"target": 53,
"weight": 2
},
{
"source": 52,
"target": 171,
"weight": 2
},
{
"source": 53,
"target": 95,
"weight": 2
},
{
"source": 53,
"target": 275,
"weight": 1
},
{
"source": 53,
"target": 171,
"weight": 6
},
{
"source": 54,
"target": 340,
"weight": 1
},
{
"source": 55,
"target": 129,
"weight": 4
},
{
"source": 55,
"target": 301,
"weight": 4
},
{
"source": 56,
"target": 340,
"weight": 1
},
{
"source": 57,
"target": 390,
"weight": 1
},
{
"source": 57,
"target": 340,
"weight": 1
},
{
"source": 58,
"target": 171,
"weight": 1
},
{
"source": 58,
"target": 246,
"weight": 1
},
{
"source": 59,
"target": 340,
"weight": 1
},
{
"source": 60,
"target": 115,
"weight": 1
},
{
"source": 60,
"target": 340,
"weight": 2
},
{
"source": 62,
"target": 340,
"weight": 1
},
{
"source": 63,
"target": 319,
"weight": 1
},
{
"source": 64,
"target": 115,
"weight": 1
},
{
"source": 64,
"target": 340,
"weight": 1
},
{
"source": 65,
"target": 70,
"weight": 1
},
{
"source": 66,
"target": 340,
"weight": 2
},
{
"source": 66,
"target": 171,
"weight": 1
},
{
"source": 67,
"target": 115,
"weight": 1
},
{
"source": 67,
"target": 340,
"weight": 2
},
{
"source": 68,
"target": 412,
"weight": 2
},
{
"source": 69,
"target": 287,
"weight": 2
},
{
"source": 69,
"target": 225,
"weight": 1
},
{
"source": 71,
"target": 340,
"weight": 1
},
{
"source": 73,
"target": 287,
"weight": 3
},
{
"source": 73,
"target": 272,
"weight": 3
},
{
"source": 73,
"target": 340,
"weight": 6
},
{
"source": 73,
"target": 115,
"weight": 1
},
{
"source": 73,
"target": 225,
"weight": 3
},
{
"source": 73,
"target": 196,
"weight": 2
},
{
"source": 74,
"target": 361,
"weight": 1
},
{
"source": 75,
"target": 121,
"weight": 1
},
{
"source": 75,
"target": 390,
"weight": 2
},
{
"source": 75,
"target": 80,
"weight": 1
},
{
"source": 75,
"target": 312,
"weight": 1
},
{
"source": 75,
"target": 142,
"weight": 1
},
{
"source": 75,
"target": 164,
"weight": 2
},
{
"source": 75,
"target": 219,
"weight": 13
},
{
"source": 75,
"target": 77,
"weight": 3
},
{
"source": 75,
"target": 171,
"weight": 1
},
{
"source": 76,
"target": 115,
"weight": 2
},
{
"source": 76,
"target": 261,
"weight": 2
},
{
"source": 76,
"target": 171,
"weight": 2
},
{
"source": 77,
"target": 219,
"weight": 3
},
{
"source": 77,
"target": 142,
"weight": 1
},
{
"source": 78,
"target": 207,
"weight": 2
},
{
"source": 80,
"target": 219,
"weight": 1
},
{
"source": 81,
"target": 361,
"weight": 2
},
{
"source": 81,
"target": 115,
"weight": 2
},
{
"source": 82,
"target": 315,
"weight": 3
},
{
"source": 82,
"target": 331,
"weight": 5
},
{
"source": 82,
"target": 88,
"weight": 5
},
{
"source": 82,
"target": 432,
"weight": 5
},
{
"source": 82,
"target": 359,
"weight": 3
},
{
"source": 82,
"target": 428,
"weight": 3
},
{
"source": 82,
"target": 281,
"weight": 5
},
{
"source": 84,
"target": 122,
"weight": 1
},
{
"source": 85,
"target": 340,
"weight": 1
},
{
"source": 86,
"target": 179,
"weight": 2
},
{
"source": 86,
"target": 388,
"weight": 3
},
{
"source": 86,
"target": 122,
"weight": 1
},
{
"source": 86,
"target": 317,
"weight": 1
},
{
"source": 86,
"target": 390,
"weight": 2
},
{
"source": 86,
"target": 246,
"weight": 1
},
{
"source": 86,
"target": 215,
"weight": 1
},
{
"source": 86,
"target": 292,
"weight": 1
},
{
"source": 86,
"target": 115,
"weight": 16
},
{
"source": 86,
"target": 394,
"weight": 1
},
{
"source": 86,
"target": 348,
"weight": 2
},
{
"source": 86,
"target": 324,
"weight": 3
},
{
"source": 86,
"target": 191,
"weight": 1
},
{
"source": 86,
"target": 421,
"weight": 1
},
{
"source": 86,
"target": 334,
"weight": 1
},
{
"source": 86,
"target": 168,
"weight": 1
},
{
"source": 86,
"target": 307,
"weight": 2
},
{
"source": 86,
"target": 411,
"weight": 1
},
{
"source": 86,
"target": 171,
"weight": 15
},
{
"source": 86,
"target": 340,
"weight": 1
},
{
"source": 86,
"target": 294,
"weight": 1
},
{
"source": 86,
"target": 125,
"weight": 1
},
{
"source": 87,
"target": 405,
"weight": 1
},
{
"source": 88,
"target": 432,
"weight": 5
},
{
"source": 88,
"target": 428,
"weight": 1
},
{
"source": 89,
"target": 208,
"weight": 1
},
{
"source": 90,
"target": 340,
"weight": 2
},
{
"source": 91,
"target": 183,
"weight": 2
},
{
"source": 92,
"target": 287,
"weight": 1
},
{
"source": 92,
"target": 340,
"weight": 4
},
{
"source": 92,
"target": 115,
"weight": 1
},
{
"source": 92,
"target": 390,
"weight": 1
},
{
"source": 92,
"target": 407,
"weight": 3
},
{
"source": 93,
"target": 347,
"weight": 2
},
{
"source": 94,
"target": 287,
"weight": 1
},
{
"source": 94,
"target": 340,
"weight": 3
},
{
"source": 94,
"target": 348,
"weight": 2
},
{
"source": 95,
"target": 115,
"weight": 2
},
{
"source": 96,
"target": 115,
"weight": 2
},
{
"source": 96,
"target": 340,
"weight": 1
},
{
"source": 97,
"target": 178,
"weight": 1
},
{
"source": 97,
"target": 171,
"weight": 1
},
{
"source": 98,
"target": 326,
"weight": 1
},
{
"source": 98,
"target": 409,
"weight": 1
},
{
"source": 99,
"target": 171,
"weight": 1
},
{
"source": 100,
"target": 115,
"weight": 1
},
{
"source": 100,
"target": 340,
"weight": 2
},
{
"source": 101,
"target": 115,
"weight": 2
},
{
"source": 101,
"target": 259,
"weight": 1
},
{
"source": 102,
"target": 115,
"weight": 2
},
{
"source": 102,
"target": 340,
"weight": 2
},
{
"source": 103,
"target": 183,
"weight": 1
},
{
"source": 104,
"target": 236,
"weight": 1
},
{
"source": 105,
"target": 165,
"weight": 1
},
{
"source": 106,
"target": 289,
"weight": 1
},
{
"source": 107,
"target": 431,
"weight": 1
},
{
"source": 108,
"target": 235,
"weight": 1
},
{
"source": 108,
"target": 433,
"weight": 1
},
{
"source": 109,
"target": 147,
"weight": 2
},
{
"source": 110,
"target": 190,
"weight": 1
},
{
"source": 111,
"target": 121,
"weight": 1
},
{
"source": 111,
"target": 390,
"weight": 2
},
{
"source": 111,
"target": 115,
"weight": 4
},
{
"source": 111,
"target": 348,
"weight": 2
},
{
"source": 111,
"target": 171,
"weight": 4
},
{
"source": 112,
"target": 305,
"weight": 1
},
{
"source": 113,
"target": 183,
"weight": 2
},
{
"source": 114,
"target": 115,
"weight": 1
},
{
"source": 114,
"target": 307,
"weight": 1
},
{
"source": 114,
"target": 171,
"weight": 1
},
{
"source": 115,
"target": 179,
"weight": 4
},
{
"source": 115,
"target": 171,
"weight": 68
},
{
"source": 115,
"target": 294,
"weight": 3
},
{
"source": 115,
"target": 121,
"weight": 4
},
{
"source": 115,
"target": 123,
"weight": 1
},
{
"source": 115,
"target": 239,
"weight": 1
},
{
"source": 115,
"target": 351,
"weight": 3
},
{
"source": 115,
"target": 275,
"weight": 4
},
{
"source": 115,
"target": 388,
"weight": 4
},
{
"source": 115,
"target": 246,
"weight": 2
},
{
"source": 115,
"target": 215,
"weight": 3
},
{
"source": 115,
"target": 125,
"weight": 5
},
{
"source": 115,
"target": 356,
"weight": 1
},
{
"source": 115,
"target": 394,
"weight": 4
},
{
"source": 115,
"target": 226,
"weight": 1
},
{
"source": 115,
"target": 317,
"weight": 3
},
{
"source": 115,
"target": 361,
"weight": 4
},
{
"source": 115,
"target": 204,
"weight": 1
},
{
"source": 115,
"target": 396,
"weight": 1
},
{
"source": 115,
"target": 130,
"weight": 1
},
{
"source": 115,
"target": 324,
"weight": 7
},
{
"source": 115,
"target": 395,
"weight": 1
},
{
"source": 115,
"target": 299,
"weight": 1
},
{
"source": 115,
"target": 282,
"weight": 2
},
{
"source": 115,
"target": 283,
"weight": 1
},
{
"source": 115,
"target": 134,
"weight": 1
},
{
"source": 115,
"target": 393,
"weight": 1
},
{
"source": 115,
"target": 422,
"weight": 2
},
{
"source": 115,
"target": 328,
"weight": 3
},
{
"source": 115,
"target": 148,
"weight": 1
},
{
"source": 115,
"target": 139,
"weight": 2
},
{
"source": 115,
"target": 166,
"weight": 3
},
{
"source": 115,
"target": 228,
"weight": 2
},
{
"source": 115,
"target": 365,
"weight": 1
},
{
"source": 115,
"target": 288,
"weight": 2
},
{
"source": 115,
"target": 305,
"weight": 1
},
{
"source": 115,
"target": 189,
"weight": 2
},
{
"source": 115,
"target": 200,
"weight": 1
},
{
"source": 115,
"target": 245,
"weight": 2
},
{
"source": 115,
"target": 201,
"weight": 2
},
{
"source": 115,
"target": 375,
"weight": 1
},
{
"source": 115,
"target": 307,
"weight": 18
},
{
"source": 115,
"target": 264,
"weight": 4
},
{
"source": 115,
"target": 402,
"weight": 1
},
{
"source": 115,
"target": 411,
"weight": 6
},
{
"source": 115,
"target": 205,
"weight": 2
},
{
"source": 115,
"target": 269,
"weight": 1
},
{
"source": 115,
"target": 233,
"weight": 1
},
{
"source": 115,
"target": 378,
"weight": 1
},
{
"source": 115,
"target": 141,
"weight": 1
},
{
"source": 115,
"target": 155,
"weight": 1
},
{
"source": 115,
"target": 184,
"weight": 1
},
{
"source": 115,
"target": 400,
"weight": 1
},
{
"source": 115,
"target": 383,
"weight": 3
},
{
"source": 115,
"target": 168,
"weight": 6
},
{
"source": 115,
"target": 259,
"weight": 6
},
{
"source": 115,
"target": 421,
"weight": 3
},
{
"source": 116,
"target": 147,
"weight": 1
},
{
"source": 117,
"target": 219,
"weight": 1
},
{
"source": 117,
"target": 349,
"weight": 1
},
{
"source": 118,
"target": 348,
"weight": 1
},
{
"source": 118,
"target": 171,
"weight": 1
},
{
"source": 119,
"target": 340,
"weight": 1
},
{
"source": 120,
"target": 373,
"weight": 2
},
{
"source": 121,
"target": 171,
"weight": 2
},
{
"source": 121,
"target": 307,
"weight": 1
},
{
"source": 121,
"target": 394,
"weight": 1
},
{
"source": 121,
"target": 219,
"weight": 1
},
{
"source": 121,
"target": 411,
"weight": 1
},
{
"source": 121,
"target": 423,
"weight": 1
},
{
"source": 122,
"target": 189,
"weight": 1
},
{
"source": 122,
"target": 323,
"weight": 1
},
{
"source": 122,
"target": 375,
"weight": 1
},
{
"source": 122,
"target": 385,
"weight": 2
},
{
"source": 122,
"target": 171,
"weight": 4
},
{
"source": 123,
"target": 157,
"weight": 1
},
{
"source": 123,
"target": 340,
"weight": 1
},
{
"source": 123,
"target": 412,
"weight": 1
},
{
"source": 124,
"target": 222,
"weight": 1
},
{
"source": 125,
"target": 275,
"weight": 1
},
{
"source": 125,
"target": 171,
"weight": 5
},
{
"source": 126,
"target": 432,
"weight": 5
},
{
"source": 126,
"target": 395,
"weight": 1
},
{
"source": 126,
"target": 301,
"weight": 5
},
{
"source": 127,
"target": 340,
"weight": 1
},
{
"source": 128,
"target": 306,
"weight": 4
},
{
"source": 129,
"target": 301,
"weight": 4
},
{
"source": 131,
"target": 340,
"weight": 2
},
{
"source": 131,
"target": 174,
"weight": 1
},
{
"source": 131,
"target": 290,
"weight": 1
},
{
"source": 131,
"target": 299,
"weight": 1
},
{
"source": 131,
"target": 390,
"weight": 4
},
{
"source": 131,
"target": 226,
"weight": 1
},
{
"source": 132,
"target": 353,
"weight": 1
},
{
"source": 132,
"target": 171,
"weight": 1
},
{
"source": 133,
"target": 428,
"weight": 1
},
{
"source": 133,
"target": 143,
"weight": 5
},
{
"source": 133,
"target": 404,
"weight": 5
},
{
"source": 134,
"target": 340,
"weight": 1
},
{
"source": 134,
"target": 390,
"weight": 1
},
{
"source": 135,
"target": 340,
"weight": 4
},
{
"source": 135,
"target": 346,
"weight": 2
},
{
"source": 135,
"target": 211,
"weight": 1
},
{
"source": 136,
"target": 376,
"weight": 1
},
{
"source": 137,
"target": 268,
"weight": 2
},
{
"source": 137,
"target": 161,
"weight": 1
},
{
"source": 137,
"target": 368,
"weight": 2
},
{
"source": 137,
"target": 171,
"weight": 5
},
{
"source": 138,
"target": 340,
"weight": 1
},
{
"source": 139,
"target": 390,
"weight": 1
},
{
"source": 140,
"target": 340,
"weight": 2
},
{
"source": 142,
"target": 219,
"weight": 1
},
{
"source": 143,
"target": 428,
"weight": 1
},
{
"source": 143,
"target": 404,
"weight": 5
},
{
"source": 144,
"target": 401,
"weight": 1
},
{
"source": 145,
"target": 213,
"weight": 2
},
{
"source": 146,
"target": 340,
"weight": 1
},
{
"source": 149,
"target": 340,
"weight": 1
},
{
"source": 150,
"target": 390,
"weight": 1
},
{
"source": 151,
"target": 287,
"weight": 1
},
{
"source": 152,
"target": 162,
"weight": 2
},
{
"source": 153,
"target": 171,
"weight": 2
},
{
"source": 154,
"target": 287,
"weight": 1
},
{
"source": 154,
"target": 340,
"weight": 1
},
{
"source": 155,
"target": 324,
"weight": 1
},
{
"source": 156,
"target": 234,
"weight": 2
},
{
"source": 156,
"target": 340,
"weight": 1
},
{
"source": 157,
"target": 287,
"weight": 1
},
{
"source": 157,
"target": 171,
"weight": 2
},
{
"source": 157,
"target": 252,
"weight": 1
},
{
"source": 157,
"target": 364,
"weight": 2
},
{
"source": 158,
"target": 340,
"weight": 1
},
{
"source": 158,
"target": 336,
"weight": 1
},
{
"source": 159,
"target": 254,
"weight": 1
},
{
"source": 160,
"target": 350,
"weight": 2
},
{
"source": 161,
"target": 171,
"weight": 1
},
{
"source": 162,
"target": 352,
"weight": 1
},
{
"source": 162,
"target": 277,
"weight": 1
},
{
"source": 162,
"target": 232,
"weight": 1
},
{
"source": 162,
"target": 395,
"weight": 1
},
{
"source": 163,
"target": 377,
"weight": 3
},
{
"source": 164,
"target": 219,
"weight": 2
},
{
"source": 166,
"target": 383,
"weight": 2
},
{
"source": 167,
"target": 412,
"weight": 1
},
{
"source": 168,
"target": 275,
"weight": 1
},
{
"source": 168,
"target": 171,
"weight": 6
},
{
"source": 169,
"target": 241,
"weight": 1
},
{
"source": 170,
"target": 273,
"weight": 1
},
{
"source": 170,
"target": 305,
"weight": 1
},
{
"source": 171,
"target": 179,
"weight": 6
},
{
"source": 171,
"target": 387,
"weight": 2
},
{
"source": 171,
"target": 388,
"weight": 3
},
{
"source": 171,
"target": 348,
"weight": 16
},
{
"source": 171,
"target": 239,
"weight": 1
},
{
"source": 171,
"target": 397,
"weight": 1
},
{
"source": 171,
"target": 411,
"weight": 6
},
{
"source": 171,
"target": 184,
"weight": 1
},
{
"source": 171,
"target": 245,
"weight": 2
},
{
"source": 171,
"target": 246,
"weight": 6
},
{
"source": 171,
"target": 292,
"weight": 3
},
{
"source": 171,
"target": 412,
"weight": 3
},
{
"source": 171,
"target": 219,
"weight": 2
},
{
"source": 171,
"target": 414,
"weight": 1
},
{
"source": 171,
"target": 395,
"weight": 1
},
{
"source": 171,
"target": 353,
"weight": 1
},
{
"source": 171,
"target": 204,
"weight": 1
},
{
"source": 171,
"target": 396,
"weight": 1
},
{
"source": 171,
"target": 434,
"weight": 1
},
{
"source": 171,
"target": 324,
"weight": 5
},
{
"source": 171,
"target": 250,
"weight": 1
},
{
"source": 171,
"target": 349,
"weight": 2
},
{
"source": 171,
"target": 268,
"weight": 2
},
{
"source": 171,
"target": 368,
"weight": 2
},
{
"source": 171,
"target": 421,
"weight": 3
},
{
"source": 171,
"target": 398,
"weight": 2
},
{
"source": 171,
"target": 228,
"weight": 4
},
{
"source": 171,
"target": 390,
"weight": 10
},
{
"source": 171,
"target": 305,
"weight": 1
},
{
"source": 171,
"target": 334,
"weight": 3
},
{
"source": 171,
"target": 399,
"weight": 1
},
{
"source": 171,
"target": 310,
"weight": 1
},
{
"source": 171,
"target": 400,
"weight": 1
},
{
"source": 171,
"target": 201,
"weight": 2
},
{
"source": 171,
"target": 307,
"weight": 18
},
{
"source": 171,
"target": 264,
"weight": 2
},
{
"source": 171,
"target": 203,
"weight": 1
},
{
"source": 171,
"target": 205,
"weight": 2
},
{
"source": 171,
"target": 340,
"weight": 1
},
{
"source": 171,
"target": 200,
"weight": 1
},
{
"source": 171,
"target": 294,
"weight": 3
},
{
"source": 171,
"target": 383,
"weight": 1
},
{
"source": 171,
"target": 178,
"weight": 1
},
{
"source": 171,
"target": 309,
"weight": 1
},
{
"source": 171,
"target": 269,
"weight": 1
},
{
"source": 171,
"target": 275,
"weight": 4
},
{
"source": 171,
"target": 240,
"weight": 1
},
{
"source": 172,
"target": 219,
"weight": 1
},
{
"source": 173,
"target": 183,
"weight": 2
},
{
"source": 174,
"target": 390,
"weight": 1
},
{
"source": 175,
"target": 244,
"weight": 1
},
{
"source": 177,
"target": 416,
"weight": 2
},
{
"source": 179,
"target": 390,
"weight": 2
},
{
"source": 180,
"target": 340,
"weight": 2
},
{
"source": 181,
"target": 248,
"weight": 2
},
{
"source": 183,
"target": 320,
"weight": 1
},
{
"source": 184,
"target": 307,
"weight": 1
},
{
"source": 185,
"target": 412,
"weight": 2
},
{
"source": 186,
"target": 303,
"weight": 1
},
{
"source": 187,
"target": 219,
"weight": 1
},
{
"source": 188,
"target": 261,
"weight": 1
},
{
"source": 189,
"target": 385,
"weight": 1
},
{
"source": 189,
"target": 413,
"weight": 1
},
{
"source": 191,
"target": 340,
"weight": 2
},
{
"source": 193,
"target": 412,
"weight": 1
},
{
"source": 194,
"target": 263,
"weight": 2
},
{
"source": 195,
"target": 340,
"weight": 1
},
{
"source": 196,
"target": 340,
"weight": 1
},
{
"source": 196,
"target": 412,
"weight": 2
},
{
"source": 197,
"target": 340,
"weight": 1
},
{
"source": 198,
"target": 340,
"weight": 2
},
{
"source": 199,
"target": 390,
"weight": 1
},
{
"source": 200,
"target": 307,
"weight": 1
},
{
"source": 202,
"target": 219,
"weight": 2
},
{
"source": 203,
"target": 246,
"weight": 1
},
{
"source": 206,
"target": 247,
"weight": 1
},
{
"source": 208,
"target": 418,
"weight": 1
},
{
"source": 208,
"target": 295,
"weight": 2
},
{
"source": 209,
"target": 407,
"weight": 1
},
{
"source": 210,
"target": 261,
"weight": 1
},
{
"source": 214,
"target": 362,
"weight": 1
},
{
"source": 216,
"target": 412,
"weight": 1
},
{
"source": 217,
"target": 340,
"weight": 1
},
{
"source": 218,
"target": 227,
"weight": 1
},
{
"source": 218,
"target": 230,
"weight": 1
},
{
"source": 219,
"target": 349,
"weight": 6
},
{
"source": 219,
"target": 312,
"weight": 1
},
{
"source": 219,
"target": 314,
"weight": 1
},
{
"source": 220,
"target": 340,
"weight": 1
},
{
"source": 221,
"target": 424,
"weight": 1
},
{
"source": 223,
"target": 340,
"weight": 1
},
{
"source": 224,
"target": 287,
"weight": 1
},
{
"source": 224,
"target": 412,
"weight": 1
},
{
"source": 225,
"target": 340,
"weight": 1
},
{
"source": 225,
"target": 429,
"weight": 2
},
{
"source": 225,
"target": 412,
"weight": 2
},
{
"source": 226,
"target": 390,
"weight": 1
},
{
"source": 226,
"target": 283,
"weight": 1
},
{
"source": 227,
"target": 230,
"weight": 1
},
{
"source": 228,
"target": 259,
"weight": 2
},
{
"source": 229,
"target": 261,
"weight": 1
},
{
"source": 231,
"target": 390,
"weight": 1
},
{
"source": 231,
"target": 340,
"weight": 1
},
{
"source": 236,
"target": 255,
"weight": 1
},
{
"source": 237,
"target": 325,
"weight": 1
},
{
"source": 238,
"target": 340,
"weight": 1
},
{
"source": 241,
"target": 410,
"weight": 1
},
{
"source": 241,
"target": 286,
"weight": 1
},
{
"source": 242,
"target": 340,
"weight": 1
},
{
"source": 246,
"target": 322,
"weight": 2
},
{
"source": 246,
"target": 292,
"weight": 3
},
{
"source": 246,
"target": 259,
"weight": 2
},
{
"source": 249,
"target": 262,
"weight": 1
},
{
"source": 250,
"target": 348,
"weight": 1
},
{
"source": 251,
"target": 340,
"weight": 1
},
{
"source": 253,
"target": 287,
"weight": 2
},
{
"source": 254,
"target": 412,
"weight": 1
},
{
"source": 256,
"target": 340,
"weight": 1
},
{
"source": 257,
"target": 338,
"weight": 1
},
{
"source": 258,
"target": 263,
"weight": 1
},
{
"source": 259,
"target": 340,
"weight": 1
},
{
"source": 259,
"target": 390,
"weight": 1
},
{
"source": 260,
"target": 429,
"weight": 1
},
{
"source": 261,
"target": 345,
"weight": 1
},
{
"source": 261,
"target": 284,
"weight": 1
},
{
"source": 261,
"target": 316,
"weight": 1
},
{
"source": 263,
"target": 335,
"weight": 1
},
{
"source": 265,
"target": 340,
"weight": 1
},
{
"source": 267,
"target": 340,
"weight": 1
},
{
"source": 269,
"target": 307,
"weight": 1
},
{
"source": 270,
"target": 340,
"weight": 2
},
{
"source": 272,
"target": 340,
"weight": 1
},
{
"source": 272,
"target": 429,
"weight": 2
},
{
"source": 272,
"target": 412,
"weight": 2
},
{
"source": 273,
"target": 305,
"weight": 2
},
{
"source": 273,
"target": 395,
"weight": 1
},
{
"source": 274,
"target": 340,
"weight": 2
},
{
"source": 274,
"target": 390,
"weight": 1
},
{
"source": 275,
"target": 324,
"weight": 1
},
{
"source": 275,
"target": 411,
"weight": 1
},
{
"source": 276,
"target": 340,
"weight": 1
},
{
"source": 279,
"target": 340,
"weight": 1
},
{
"source": 281,
"target": 331,
"weight": 5
},
{
"source": 281,
"target": 428,
"weight": 1
},
{
"source": 284,
"target": 345,
"weight": 1
},
{
"source": 285,
"target": 340,
"weight": 1
},
{
"source": 287,
"target": 340,
"weight": 3
},
{
"source": 287,
"target": 419,
"weight": 1
},
{
"source": 287,
"target": 412,
"weight": 3
},
{
"source": 287,
"target": 357,
"weight": 2
},
{
"source": 287,
"target": 429,
"weight": 3
},
{
"source": 290,
"target": 390,
"weight": 1
},
{
"source": 293,
"target": 412,
"weight": 1
},
{
"source": 296,
"target": 390,
"weight": 1
},
{
"source": 296,
"target": 385,
"weight": 1
},
{
"source": 297,
"target": 363,
"weight": 1
},
{
"source": 298,
"target": 340,
"weight": 1
},
{
"source": 299,
"target": 340,
"weight": 3
},
{
"source": 299,
"target": 348,
"weight": 1
},
{
"source": 300,
"target": 403,
"weight": 1
},
{
"source": 301,
"target": 331,
"weight": 4
},
{
"source": 301,
"target": 432,
"weight": 5
},
{
"source": 301,
"target": 367,
"weight": 4
},
{
"source": 301,
"target": 395,
"weight": 1
},
{
"source": 302,
"target": 340,
"weight": 2
},
{
"source": 304,
"target": 395,
"weight": 1
},
{
"source": 305,
"target": 307,
"weight": 1
},
{
"source": 307,
"target": 396,
"weight": 1
},
{
"source": 307,
"target": 400,
"weight": 1
},
{
"source": 307,
"target": 395,
"weight": 1
},
{
"source": 308,
"target": 395,
"weight": 1
},
{
"source": 313,
"target": 340,
"weight": 1
},
{
"source": 314,
"target": 349,
"weight": 1
},
{
"source": 315,
"target": 428,
"weight": 1
},
{
"source": 315,
"target": 359,
"weight": 3
},
{
"source": 318,
"target": 340,
"weight": 2
},
{
"source": 321,
"target": 386,
"weight": 1
},
{
"source": 322,
"target": 340,
"weight": 2
},
{
"source": 322,
"target": 348,
"weight": 2
},
{
"source": 324,
"target": 390,
"weight": 6
},
{
"source": 324,
"target": 348,
"weight": 2
},
{
"source": 327,
"target": 340,
"weight": 1
},
{
"source": 328,
"target": 356,
"weight": 1
},
{
"source": 329,
"target": 340,
"weight": 1
},
{
"source": 331,
"target": 367,
"weight": 4
},
{
"source": 331,
"target": 428,
"weight": 1
},
{
"source": 333,
"target": 426,
"weight": 1
},
{
"source": 334,
"target": 348,
"weight": 3
},
{
"source": 336,
"target": 340,
"weight": 1
},
{
"source": 337,
"target": 412,
"weight": 2
},
{
"source": 339,
"target": 346,
"weight": 1
},
{
"source": 339,
"target": 340,
"weight": 1
},
{
"source": 340,
"target": 371,
"weight": 1
},
{
"source": 340,
"target": 341,
"weight": 1
},
{
"source": 340,
"target": 344,
"weight": 1
},
{
"source": 340,
"target": 346,
"weight": 8
},
{
"source": 340,
"target": 351,
"weight": 2
},
{
"source": 340,
"target": 357,
"weight": 2
},
{
"source": 340,
"target": 370,
"weight": 1
},
{
"source": 340,
"target": 372,
"weight": 1
},
{
"source": 340,
"target": 376,
"weight": 2
},
{
"source": 340,
"target": 378,
"weight": 1
},
{
"source": 340,
"target": 380,
"weight": 1
},
{
"source": 340,
"target": 385,
"weight": 7
},
{
"source": 340,
"target": 389,
"weight": 2
},
{
"source": 340,
"target": 390,
"weight": 1
},
{
"source": 340,
"target": 392,
"weight": 2
},
{
"source": 340,
"target": 407,
"weight": 2
},
{
"source": 340,
"target": 417,
"weight": 2
},
{
"source": 340,
"target": 420,
"weight": 1
},
{
"source": 340,
"target": 422,
"weight": 2
},
{
"source": 340,
"target": 425,
"weight": 1
},
{
"source": 340,
"target": 384,
"weight": 1
},
{
"source": 340,
"target": 429,
"weight": 3
},
{
"source": 340,
"target": 430,
"weight": 2
},
{
"source": 340,
"target": 435,
"weight": 2
},
{
"source": 343,
"target": 348,
"weight": 1
},
{
"source": 346,
"target": 385,
"weight": 4
},
{
"source": 348,
"target": 388,
"weight": 3
},
{
"source": 348,
"target": 434,
"weight": 1
},
{
"source": 349,
"target": 390,
"weight": 2
},
{
"source": 351,
"target": 390,
"weight": 1
},
{
"source": 351,
"target": 412,
"weight": 1
},
{
"source": 354,
"target": 390,
"weight": 1
},
{
"source": 358,
"target": 412,
"weight": 2
},
{
"source": 359,
"target": 428,
"weight": 1
},
{
"source": 360,
"target": 390,
"weight": 1
},
{
"source": 360,
"target": 385,
"weight": 1
},
{
"source": 364,
"target": 412,
"weight": 2
},
{
"source": 366,
"target": 381,
"weight": 2
},
{
"source": 374,
"target": 390,
"weight": 1
},
{
"source": 376,
"target": 412,
"weight": 2
},
{
"source": 382,
"target": 391,
"weight": 1
},
{
"source": 385,
"target": 390,
"weight": 5
},
{
"source": 385,
"target": 414,
"weight": 1
},
{
"source": 387,
"target": 390,
"weight": 4
},
{
"source": 388,
"target": 390,
"weight": 1
},
{
"source": 390,
"target": 402,
"weight": 1
},
{
"source": 390,
"target": 407,
"weight": 1
},
{
"source": 395,
"target": 432,
"weight": 1
},
{
"source": 395,
"target": 412,
"weight": 1
},
{
"source": 395,
"target": 408,
"weight": 1
},
{
"source": 395,
"target": 415,
"weight": 1
},
{
"source": 399,
"target": 427,
"weight": 1
},
{
"source": 404,
"target": 428,
"weight": 1
},
{
"source": 406,
"target": 412,
"weight": 2
},
{
"source": 409,
"target": 412,
"weight": 2
},
{
"source": 428,
"target": 432,
"weight": 1
}
],
"multigraph": false,
"nodes": [
{
"betweenness": 0.0,
"id": "Commentaries",
"position_in_compound": 3
},
{
"betweenness": 0.0,
"id": "Paraphrases, English",
"position_in_compound": 3
},
{
"betweenness": 0.08234372450280675,
"id": "17th century",
"position_in_compound": 2
},
{
"betweenness": 0.09464670545698847,
"id": "Poetry",
"position_in_compound": 3
},
{
"betweenness": 0.0,
"id": "To 1485",
"position_in_compound": 2
},
{
"betweenness": 0.003744845279586355,
"id": "Church history",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "1558-1603",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Trials",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Coinage",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Love poetry, English",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Henry",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Prince of Wales, 1688-1766",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Earl of, 1566-1601",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Examinations",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Leeds, Thomas Osborne,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Estates (Law)",
"position_in_compound": 0
},
{
"betweenness": 0.003495947878595265,
"id": "Soldiers",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Turkey",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Baron, 1598-1652",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "1648-1714",
"position_in_compound": 2
},
{
"betweenness": 1.3434915562150156e-05,
"id": "1648-1715",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "War of 1689-1691",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Devotional literature",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Regicides",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Theater",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "O.T",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Essence, genius, nature",
"position_in_compound": 1
},
{
"betweenness": 0.01129051614132282,
"id": "Politics and government",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "of Modena, Queen, consort of James II, King of England, 1658-1718",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Duke of, 1592-1676",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Campaigns",
"position_in_compound": 3
},
{
"betweenness": 0.0,
"id": "Henry VIII, 1509-1547",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Wars of Independence, 1556-1648",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Sir, 1619?-1674?",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Debtor and creditor",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Bishops",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Sir, d. 1661",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Appropriations and expenditures",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Henry III, 1574-1589",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Strafford, Thomas Wentworth,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Marriage",
"position_in_compound": 0
},
{
"betweenness": 5.732183548805193e-05,
"id": "Ballads, English",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Natural history",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Imprisonment",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Land tenure",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Huguenots",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Quakers",
"position_in_compound": 0
},
{
"betweenness": 7.027843454329796e-05,
"id": "William and Mary, 1689-1702",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Puritan Revolution, 1642-1660",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Catalogs, Booksellers'",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Wales",
"position_in_compound": 4
},
{
"betweenness": 0.0006829292202740297,
"id": "Wool industry",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "1517-1648",
"position_in_compound": 2
},
{
"betweenness": 0.0008513109067333765,
"id": "Europe",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Detention of persons",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Queen of England, 1533-1603",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Lent",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Loyalty oaths",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Wars of the Huguenots, 1562-1598",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Patent medicines",
"position_in_compound": 0
},
{
"betweenness": 0.0006829292202740297,
"id": "Ecclesiastical law",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Primitive and early church, ca. 30-600",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Tithes",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Modern period, 1500-",
"position_in_compound": 1
},
{
"betweenness": 0.0006829292202740297,
"id": "Law reports, digests, etc",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Sir, 1621-1678",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Royalists",
"position_in_compound": 0
},
{
"betweenness": 0.0006829292202740297,
"id": "Freedom of religion",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Customs and practices",
"position_in_compound": 1
},
{
"betweenness": 1.0593781450288681e-05,
"id": "Protestantism",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Godfrey, Edmund Berry,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Christian sects",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Billeting",
"position_in_compound": 1
},
{
"betweenness": 0.0037350470274365674,
"id": "Society of Friends",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Duties",
"position_in_compound": 1
},
{
"betweenness": 0.011401154205995972,
"id": "Parliament",
"position_in_compound": 1
},
{
"betweenness": 0.034006038455426664,
"id": "Prophecies",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "House of Commons",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Sir, 1597?-1668",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Anglo-Dutch War, 1664-1667",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Expulsion",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Succession",
"position_in_compound": 2
},
{
"betweenness": 0.0003370807534317329,
"id": "II,",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Hesilrige, Arthur,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Fire, 1666",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Prohibited books",
"position_in_compound": 0
},
{
"betweenness": 0.01474061267928685,
"id": "Sources",
"position_in_compound": 3
},
{
"betweenness": 0.0,
"id": "Earl of, 1602-1671",
"position_in_compound": 1
},
{
"betweenness": 0.00027594014724107064,
"id": "King of England, 1630-1685",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Descent into hell",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Criminals",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Wrath",
"position_in_compound": 1
},
{
"betweenness": 0.003311270318224441,
"id": "Dissenters, Religious",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Fairfax, Thomas Fairfax,",
"position_in_compound": 0
},
{
"betweenness": 0.0004960740213261687,
"id": "Catholics",
"position_in_compound": 0
},
{
"betweenness": 4.9924650274245046e-05,
"id": "Description and travel",
"position_in_compound": 1
},
{
"betweenness": 0.0006829292202740297,
"id": "Prerogative, Royal",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Londonderry (Northern Ireland)",
"position_in_compound": 0
},
{
"betweenness": 0.003495947878595265,
"id": "Popes",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Hull (England)",
"position_in_compound": 0
},
{
"betweenness": 0.0006829292202740297,
"id": "Trials (Treason)",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Spain",
"position_in_compound": 2
},
{
"betweenness": 0.0006829292202740297,
"id": "Anti-Catholicism",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Mercy",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Grammar",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "English drama",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Shaftesbury, Anthony Ashley Cooper,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Viscount, 1614-1680",
"position_in_compound": 1
},
{
"betweenness": 1.0593781450288681e-05,
"id": "Buckingham, George Villiers,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Court of Common Council",
"position_in_compound": 1
},
{
"betweenness": 0.003495947878595265,
"id": "Songs, English",
"position_in_compound": 0
},
{
"betweenness": 0.0014661304997820787,
"id": "1649-1660",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Authority",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Worship and love",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Treaties",
"position_in_compound": 3
},
{
"betweenness": 0.11646214881816173,
"id": "Great Britain",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Committee for the Militia",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Council",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "1688-1689",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Agriculture",
"position_in_compound": 0
},
{
"betweenness": 1.0593781450288681e-05,
"id": "Essex, Robert Devereux,",
"position_in_compound": 0
},
{
"betweenness": 0.003321111175874859,
"id": "Humor",
"position_in_compound": 3
},
{
"betweenness": 0.008096547894766253,
"id": "London (England)",
"position_in_compound": 0
},
{
"betweenness": 0.004240069618869699,
"id": "Fasts and feasts",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Holles, Denzil Holles,",
"position_in_compound": 0
},
{
"betweenness": 0.00012128871517379157,
"id": "Restoration, 1660-1688",
"position_in_compound": 2
},
{
"betweenness": 0.00015187622966106995,
"id": "King of England, 1600-1649",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Postal service",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Duke of, 1608-1670",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Elizabeth",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "1642-1660",
"position_in_compound": 2
},
{
"betweenness": 0.0016225275502564271,
"id": "Law and legislation",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Siege, 1648",
"position_in_compound": 2
},
{
"betweenness": 0.00027594014724107064,
"id": "William",
"position_in_compound": 0
},
{
"betweenness": 0.0007410552418714616,
"id": "Proclamations",
"position_in_compound": 1
},
{
"betweenness": 0.003495947878595265,
"id": "Plague",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Office",
"position_in_compound": 1
},
{
"betweenness": 1.5890672175433022e-05,
"id": "Colonial period, ca. 1600-1775",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Rogues and vagabonds",
"position_in_compound": 0
},
{
"betweenness": 5.812602159743252e-05,
"id": "Commerce",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Trials (Murder)",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Monopolies",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Contested elections",
"position_in_compound": 3
},
{
"betweenness": 0.00027594014724107064,
"id": "III,",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Marquis of, 1598-1661",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Rupert,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Money",
"position_in_compound": 0
},
{
"betweenness": 1.0593781450288681e-05,
"id": "City of London (England)",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Constitutional history",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Religion and politics",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "International travel regulations",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Puritans",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Catholic authors",
"position_in_compound": 1
},
{
"betweenness": 0.003495947878595265,
"id": "University of Oxford",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Anabaptists",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Anecdotes",
"position_in_compound": 3
},
{
"betweenness": 0.003495947878595265,
"id": "Medicine",
"position_in_compound": 0
},
{
"betweenness": 0.00602025508559918,
"id": "Church of Scotland",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Catalogs",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Real presence",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "King of France, 1553-1610",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "New England",
"position_in_compound": 0
},
{
"betweenness": 0.014072105055340393,
"id": "Christian life",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Monmouth, James Scott,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "House of Lords",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Restoration, 1660-1700",
"position_in_compound": 1
},
{
"betweenness": 7.194943234987728e-05,
"id": "History, Naval",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Charitable contributions",
"position_in_compound": 1
},
{
"betweenness": 0.00012128871517379157,
"id": "Charles II, 1660-1685",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Young men",
"position_in_compound": 0
},
{
"betweenness": 0.003495947878595265,
"id": "Christianity",
"position_in_compound": 0
},
{
"betweenness": 0.24692371897621898,
"id": "History",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Sovereign (1625-1649 : Charles I)",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Love",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Prayers",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Sir, 1616-1704",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Earl of, 1593-1641",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Ormonde, James Butler,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Siege, 1688-1689",
"position_in_compound": 2
},
{
"betweenness": 5.812602159743252e-05,
"id": "Charles I, 1625-1649",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Visitations, Ecclesiastical",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Hotham, John,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Pre-Linnean works",
"position_in_compound": 1
},
{
"betweenness": 0.00010593781450288681,
"id": "God",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Peace",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Liturgy",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Case of the allegiance due to soveraign powers",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Sovereign (1660-1685 : Charles II)",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Evidences, authority, etc",
"position_in_compound": 1
},
{
"betweenness": 0.0012040743389243281,
"id": "16th century",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Texts",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Civil rights",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Ballads, Scots",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Thirty-nine Articles",
"position_in_compound": 1
},
{
"betweenness": 0.010424280947084062,
"id": "English poetry",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Church lands",
"position_in_compound": 0
},
{
"betweenness": 0.0015808523393123144,
"id": "Pastoral letters and charges",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Ballads",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Liberty of conscience",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Food law and legislation",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Pamphlets",
"position_in_compound": 3
},
{
"betweenness": 0.0,
"id": "1689-1714",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Royal Navy",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Henry IV, 1589-1610",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Edward VI, 1547-1553",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "James I, 1603-1625",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Lord, 1639-1683",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Waller, William,",
"position_in_compound": 0
},
{
"betweenness": 6.356268870173209e-05,
"id": "Jesus Christ",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Prisoners",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Chronology",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Prevention",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Funeral sermons",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Prince, Count Palatine, 1619-1682",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Inchiquin, Murrough O'Brien,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Religion",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Discipline",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Lotteries",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "XIV,",
"position_in_compound": 1
},
{
"betweenness": 0.02258704181938137,
"id": "England and Wales",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Poor",
"position_in_compound": 0
},
{
"betweenness": 1.0593781450288681e-05,
"id": "Mary,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Baron, 1599-1680",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Indulgences",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Puritan authors",
"position_in_compound": 2
},
{
"betweenness": 0.0032482645296452207,
"id": "Apologetic works",
"position_in_compound": 1
},
{
"betweenness": 0.0005862583667553804,
"id": "Finance, Public",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "King of France, 1638-1715",
"position_in_compound": 2
},
{
"betweenness": 0.0004518842576485868,
"id": "Netherlands",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Psalms",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Louis",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Foreign trade regulation",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Anglican authors",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Nobility",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Formulae, receipts, prescriptions",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Duke of, 1628-1687",
"position_in_compound": 1
},
{
"betweenness": 1.0593781450288681e-05,
"id": "Latin language",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Earl of, 1631-1683",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Education",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Mary I, 1553-1558",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "York (England)",
"position_in_compound": 0
},
{
"betweenness": 0.006981301975740242,
"id": "Conduct of life",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Separatists",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Lilburne, John, 1614?-1657",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "L'Estrange, Roger,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Elizabeth, 1558-1603",
"position_in_compound": 2
},
{
"betweenness": 0.005921718626561935,
"id": "France",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Russell, William,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Sir, d. 1645 Jan. 2",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Schomberg, Friedrich Hermann Schomberg,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "1649-1775",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Independent churches",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "General Assembly",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Presbyterianism",
"position_in_compound": 0
},
{
"betweenness": 0.003495947878595265,
"id": "Lord's Supper",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Study and teaching",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Courts",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Prices",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Religious poetry, English",
"position_in_compound": 0
},
{
"betweenness": 0.0026594617995597584,
"id": "Foreign relations",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Infallibility",
"position_in_compound": 1
},
{
"betweenness": 0.031018592086445255,
"id": "Bible",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Duke of, 1615-1690",
"position_in_compound": 1
},
{
"betweenness": 0.006981301975740241,
"id": "Early modern, 1500-1700",
"position_in_compound": 1
},
{
"betweenness": 1.3434915562150156e-05,
"id": "1660-1714",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Debt, Imprisonment for",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Fast-day sermons",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Justice, Administration of",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Virginia",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Naval operations",
"position_in_compound": 3
},
{
"betweenness": 0.0,
"id": "Oaths",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Theology, Doctrinal",
"position_in_compound": 0
},
{
"betweenness": 0.0017862638645617752,
"id": "Doctrines",
"position_in_compound": 1
},
{
"betweenness": 0.0006152642740448053,
"id": "Death",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Treason",
"position_in_compound": 0
},
{
"betweenness": 0.0002161706593752816,
"id": "Periodicals",
"position_in_compound": 3
},
{
"betweenness": 0.0,
"id": "Riots",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Biblical teaching",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "James,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Conspiracies",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Newcastle, William Cavendish,",
"position_in_compound": 0
},
{
"betweenness": 0.00027594014724107064,
"id": "King of England, 1633-1701",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Monarchy",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "To 1688",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Revelation",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Restraint of trade",
"position_in_compound": 0
},
{
"betweenness": 0.010424280947084065,
"id": "Women",
"position_in_compound": 0
},
{
"betweenness": 0.01769589024238526,
"id": "Controversial literature",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Commercial policy",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Earl of, 1621-1683",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Poll tax",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Political satire, English",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Louis XIV, 1643-1715",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Creeds",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Revolution of 1688",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Divinity",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Edinburgh (Lothian)",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "1599-1658",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Inclosures",
"position_in_compound": 0
},
{
"betweenness": 0.001358402634784619,
"id": "Taxation",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Earl of, 1607-1651",
"position_in_compound": 1
},
{
"betweenness": 0.0009689419966712199,
"id": "I,",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Persecution",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Sherlock, William, 1641?-1707",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Faith",
"position_in_compound": 0
},
{
"betweenness": 0.011258567958869885,
"id": "Religious aspects",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Albemarle, George Monck,",
"position_in_compound": 0
},
{
"betweenness": 0.0022466340112494354,
"id": "Civil War, 1642-1649",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Salvation",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "1453-1683",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Apologetics",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Duke of, 1631-1712",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Registers",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Freedom of the press",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Pay, allowances, etc",
"position_in_compound": 2
},
{
"betweenness": 0.00027594014724107064,
"id": "Queen of England, 1662-1694",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Criticism, interpretation, etc",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "1689-1702",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Crime",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Spiritual life",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Attributes",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Sir, 1572-1636",
"position_in_compound": 1
},
{
"betweenness": 0.0006319446188207934,
"id": "Protestants",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Defenses",
"position_in_compound": 1
},
{
"betweenness": 0.0020724445837220595,
"id": "1660-1688",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Essex, Arthur Capel,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Primacy",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Censorship",
"position_in_compound": 0
},
{
"betweenness": 2.525910675857616e-05,
"id": "1603-1714",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Trading companies",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Satire, English",
"position_in_compound": 0
},
{
"betweenness": 0.00031913017930763226,
"id": "James",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Sermons, American",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Bristol, George Digby,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Rebellion of 1641",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Christian poetry, English",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Art",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Catechisms",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Wine",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Art auctions",
"position_in_compound": 0
},
{
"betweenness": 0.24474615633208782,
"id": "England",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Pirates",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Popish Plot, 1678",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Brigands and robbers",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Political ballads and songs",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "N.T",
"position_in_compound": 1
},
{
"betweenness": 0.000855674154462549,
"id": "London",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Baron, 1612-1671",
"position_in_compound": 1
},
{
"betweenness": 0.006830791084751644,
"id": "Ireland",
"position_in_compound": 0
},
{
"betweenness": 0.0055032582698242944,
"id": "Army",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "IV,",
"position_in_compound": 1
},
{
"betweenness": 0.003755771281630796,
"id": "Church and state",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Protestant authors",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Colchester (England)",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Elegiac poetry, English",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Hopton, Ralph Hopton,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "History, Military",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Jesuits",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Book of common prayer",
"position_in_compound": 1
},
{
"betweenness": 0.00027594014724107064,
"id": "Mary",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Edinburgh",
"position_in_compound": 2
},
{
"betweenness": 0.003495947878595264,
"id": "Kings and rulers",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Earl of, 1614-1674",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Cromwell, Oliver",
"position_in_compound": 0
},
{
"betweenness": 9.985135839259468e-05,
"id": "Government",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "1603-1625",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Earl of, 1587-1658",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "King of England, 1566-1625",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Massachusetts",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Massey, Edward,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Sedition",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Inheritance and succession",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Impeachments",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Earl of, 1591-1646",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Tax collection",
"position_in_compound": 0
},
{
"betweenness": 0.00011423312952999238,
"id": "Militia",
"position_in_compound": 1
},
{
"betweenness": 0.005032306335816359,
"id": "Clergy",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Duke of, 1649-1685",
"position_in_compound": 1
},
{
"betweenness": 0.0006829292202740297,
"id": "Social life and customs",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Moral and ethical aspects",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Terms of court",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Warwick, Robert Rich,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Jeffreys, George Jeffreys,",
"position_in_compound": 0
},
{
"betweenness": 0.00011577031122557893,
"id": "Stuarts, 1603-1714",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Printing",
"position_in_compound": 0
},
{
"betweenness": 0.0029395796438641745,
"id": "Broadsides",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Courten, William,",
"position_in_compound": 0
},
{
"betweenness": 1.3434915562150156e-05,
"id": "1689-1745",
"position_in_compound": 2
},
{
"betweenness": 0.0001683493108796798,
"id": "1625-1649",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Executions and executioners",
"position_in_compound": 0
},
{
"betweenness": 0.0429340706648419,
"id": "Scotland",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Baron, 1644 or 5-1689",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Religious tolerance",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Economic conditions",
"position_in_compound": 1
},
{
"betweenness": 4.608443303164795e-06,
"id": "1642-1649",
"position_in_compound": 2
},
{
"betweenness": 0.030761191359001815,
"id": "Sermons",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Finance",
"position_in_compound": 3
},
{
"betweenness": 0.0,
"id": "Yorkshire (England)",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Kent (England)",
"position_in_compound": 0
},
{
"betweenness": 0.003495947878595265,
"id": "Theology",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Confiscations and contributions",
"position_in_compound": 3
},
{
"betweenness": 0.0,
"id": "Argyll, Archibald Campbell,",
"position_in_compound": 0
},
{
"betweenness": 5.812602159743252e-05,
"id": "Public worship",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Derby, James Stanley,",
"position_in_compound": 0
},
{
"betweenness": 0.00027594014724107064,
"id": "King of England, 1650-1702",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Manchester, Edward Montagu,",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Prayer-books and devotions",
"position_in_compound": 1
},
{
"betweenness": 0.003495947878595265,
"id": "Legal status, laws, etc",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Charity",
"position_in_compound": 0
},
{
"betweenness": 0.006970708194289952,
"id": "Temporal power",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Early works to 1900",
"position_in_compound": 1
},
{
"betweenness": 0.00016596039599973674,
"id": "Commonwealth and Protectorate, 1649-1660",
"position_in_compound": 2
},
{
"betweenness": 0.06478156108447015,
"id": "Church of England",
"position_in_compound": 0
},
{
"betweenness": 5.732183548805193e-05,
"id": "Sermons, English",
"position_in_compound": 0
},
{
"betweenness": 0.0001567392577002978,
"id": "Oxford (England)",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Sin",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Duke of, 1610-1688",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Murder",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Person and offices",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Antinomianism",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Excise tax",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "James II, 1685-1688",
"position_in_compound": 2
},
{
"betweenness": 0.0006829292202740297,
"id": "Law",
"position_in_compound": 0
},
{
"betweenness": 3.6451721119272836e-05,
"id": "Cromwell, Oliver, 1599-1658",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Queen of Scots, 1542-1587",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Attachment and garnishment",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Earl of, 1612-1677",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "Examinations, questions, etc",
"position_in_compound": 1
},
{
"betweenness": 0.00019512786476079026,
"id": "Coronation",
"position_in_compound": 3
},
{
"betweenness": 0.003524786505876606,
"id": "Catholic Church",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Witchcraft",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Stafford, William Howard,",
"position_in_compound": 0
},
{
"betweenness": 0.0015060877577371483,
"id": "Charles",
"position_in_compound": 0
},
{
"betweenness": 0.0,
"id": "Duke of, 1592-1628",
"position_in_compound": 1
},
{
"betweenness": 0.0,
"id": "1691-",
"position_in_compound": 2
},
{
"betweenness": 0.0,
"id": "Reformation",
"position_in_compound": 0
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment