GEXDFD3 interactive network of #HILT2014 tweeters with sketchy graphics.
Last active
July 27, 2016 04:06
-
-
Save emeeks/5f5237a49147e712eb7c to your computer and use it in GitHub Desktop.
Sketchy Network
This file contains 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
d3.sketchy = {}; | |
d3.sketchy.circle = function(selection) { | |
var r = 5, c = [0,0], w = 2, fillColor = "red", strokeColor = "black"; | |
function d3_sketchyCircle(selection) { | |
selection.append("circle").attr("class", "sketchy").attr("r", r).attr("cx", c[0]).attr("cy", c[1]).style("fill", fillColor) | |
r = r * 1.5; | |
//divide width by two to get the offset | |
var z = w /2; | |
var gCirclePoints = []; | |
gCirclePoints.push([c[0],c[1] + r - (r * .35)]); | |
gCirclePoints.push([c[0],c[1] + r - (r * .25)]); | |
gCirclePoints.push([c[0] + (r + (z * .375)) * .3,c[1] + (r - (r * .25)) * .9]); | |
gCirclePoints.push([c[0] + (r * .9) + (z * .375),c[1] - (r * .1)]); | |
gCirclePoints.push([c[0],c[1] - (r * 1) - (z * .5)]); | |
gCirclePoints.push([c[0] - (r * .9) - (z * .35),c[1] - (r * .1)]); | |
gCirclePoints.push([c[0] - (r + (z * .95)) * .4,c[1] + (r - (r * .25)) * .9]); | |
gCirclePoints.push([c[0],c[1] + (r * .9) + (z) - (r * .25)]); | |
gCirclePoints.push([c[0],c[1] + (r * .9) - (z) - (r * .25)]); | |
gCirclePoints.push([c[0] - (r - (z * .95)) * .3,c[1] + (r - (r * .25)) * .9]); | |
gCirclePoints.push([c[0] - (r * .9) + (z * .75),c[1] - (r * .1)]); | |
gCirclePoints.push([c[0],c[1] - (r * 1) + (z * .5)]); | |
gCirclePoints.push([c[0] + (r * .9) - (z * .375),c[1] - (r * .1)]); | |
gCirclePoints.push([c[0] + (r - (z * .375)) * .3,c[1] + (r - (r * .25)) * .9]); | |
gCirclePoints.push([c[0],c[1] + r - (r * .35)]); | |
sketchyC = d3.svg.line() | |
.x(function(d,i) { | |
return d[0] | |
}) | |
.y(function(d) { | |
return d[1] | |
}) | |
.interpolate("basis") | |
selection.append("path").attr("class", "sketchy").attr("d", sketchyC(gCirclePoints)).style("stroke", "none").style("fill", strokeColor) | |
return this; | |
} | |
d3_sketchyCircle.radius = function(data) { | |
if (!arguments.length) return r; | |
r = data; | |
return this; | |
} | |
d3_sketchyCircle.cx = function(data) { | |
if (!arguments.length) return c[0]; | |
c[0] = data; | |
return this; | |
} | |
d3_sketchyCircle.cy = function(data) { | |
if (!arguments.length) return c[1]; | |
c[1] = data; | |
return this; | |
} | |
d3_sketchyCircle.fill = function(data) { | |
if (!arguments.length) return fillColor; | |
fillColor = data; | |
return this; | |
} | |
d3_sketchyCircle.stroke = function(data) { | |
if (!arguments.length) return strokeColor; | |
strokeColor = data; | |
return this; | |
} | |
d3_sketchyCircle.strokeWidth = function(data) { | |
if (!arguments.length) return w; | |
w = data; | |
return this; | |
} | |
return d3_sketchyCircle; | |
} | |
d3.sketchy.rect = function(selection) { | |
var rh = 50,rw = 10,w = 2,c = [0,0],fillColor = "red",strokeColor="black",jostle = 0; | |
function d3_sketchyRect(selection) { | |
selection.append("rect").attr("class", "sketchy").attr("x", c[0]).attr("y", c[1]).attr("height", rh).attr("width", rw).style("fill", fillColor) | |
var randomJostle = d3.scale.linear().domain([0,1]).range([-jostle,jostle]); | |
var j = []; | |
j.push(randomJostle(Math.random())); | |
j.push(randomJostle(Math.random())); | |
j.push(randomJostle(Math.random())); | |
j.push(randomJostle(Math.random())); | |
j.push(randomJostle(Math.random())); | |
j.push(randomJostle(Math.random())); | |
//divide width by two to get the offset | |
var z = w /2; | |
var gRectPoints = []; | |
gRectPoints.push([c[0] + (z),c[1] + rh]); | |
gRectPoints.push([c[0] - (z),c[1] + rh]); | |
gRectPoints.push([c[0] - (z * .55) + j[0],c[1] - (z * .55) + j[1]]); | |
gRectPoints.push([c[0] + rw + (z * .35) + j[2],c[1] - (z * .35) + j[3]]); | |
gRectPoints.push([c[0] + rw + (z * .25) + j[4],c[1] + rh + (z * .25) + j[5]]); | |
gRectPoints.push([c[0] + (z),c[1] + rh + (z * .1)]); | |
gRectPoints.push([c[0] + (z),c[1] + rh - (z * .1)]); | |
gRectPoints.push([c[0] + rw - (z * .25) + j[4],c[1] + rh - (z * .25) + j[5]]); | |
gRectPoints.push([c[0] + rw - (z * .35) + j[2],c[1] + (z * .35) + j[3]]); | |
gRectPoints.push([c[0] + (z * .55) + j[0],c[1] + (z * .55) + j[1]]); | |
gRectPoints.push([c[0] + (z),c[1] + rh]); | |
sketchyC = d3.svg.line() | |
.x(function(d,i) { | |
return d[0] | |
}) | |
.y(function(d) { | |
return d[1] | |
}) | |
.interpolate("linear") | |
selection.append("path").attr("class", "sketchy").attr("d", sketchyC(gRectPoints)).style("stroke", "none").style("fill", strokeColor) | |
return this; | |
} | |
d3_sketchyRect.height = function(data) { | |
if (!arguments.length) return rh; | |
rh = data; | |
return this; | |
} | |
d3_sketchyRect.width = function(data) { | |
if (!arguments.length) return rw; | |
rw = data; | |
return this; | |
} | |
d3_sketchyRect.x = function(data) { | |
if (!arguments.length) return c[0]; | |
c[0] = data; | |
return this; | |
} | |
d3_sketchyRect.y = function(data) { | |
if (!arguments.length) return c[1]; | |
c[1] = data; | |
return this; | |
} | |
d3_sketchyRect.fill = function(data) { | |
if (!arguments.length) return fillColor; | |
fillColor = data; | |
return this; | |
} | |
d3_sketchyRect.stroke = function(data) { | |
if (!arguments.length) return strokeColor; | |
strokeColor = data; | |
return this; | |
} | |
d3_sketchyRect.strokeWidth = function(data) { | |
if (!arguments.length) return w; | |
w = data; | |
return this; | |
} | |
d3_sketchyRect.jostle = function(data) { | |
if (!arguments.length) return jostle; | |
jostle = data; | |
return this; | |
} | |
return d3_sketchyRect; | |
} | |
d3.sketchy.randomColor = function(baseColor,range) { | |
var hslBase = d3.hsl(baseColor) | |
hslBase.h = hslBase.h + (Math.floor(Math.random() * (range * 255)) - Math.floor(range / 2)); | |
hslBase.s = hslBase.s + (Math.floor(Math.random() * range) - Math.floor(range / 2)); | |
hslBase.l = hslBase.l + (Math.floor(Math.random() * range) - Math.floor(range / 2)); | |
return hslBase.toString(); | |
} |
This file contains 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
body { | |
overflow: hidden; | |
font-family: 'Indie Flower', cursive; | |
} | |
#modal { | |
position:fixed; | |
left:150px; | |
top:20px; | |
z-index:1; | |
background: white; | |
border: 1px black solid; | |
box-shadow: 10px 10px 5px #888888; | |
display: none; | |
} | |
#content { | |
max-height: 400px; | |
overflow: auto; | |
} | |
#modalClose { | |
position: absolute; | |
top: -0px; | |
right: -0px; | |
z-index: 1; | |
} | |
tr { | |
border: 1px gray solid; | |
} | |
td { | |
font-size: 10px; | |
} | |
td.data { | |
font-weight: 900; | |
} | |
.tick line { | |
shape-rendering: crispEdges; | |
stroke: #000; | |
} | |
line.minor { | |
stroke: #777; | |
stroke-dasharray: 2,2; | |
} | |
path.domain { | |
fill: none; | |
stroke: black; | |
} | |
.inactive, .tentative { | |
stroke: darkgray; | |
stroke-width: 4px; | |
stroke-dasharray: 5 5; | |
} | |
.tentative { | |
opacity: .5; | |
} | |
.active { | |
stroke: black; | |
stroke-width: 4px; | |
stroke-dasharray: 0; | |
} | |
circle { | |
fill: red; | |
} | |
rect { | |
fill: darkgray; | |
} | |
#controls { | |
position: fixed; | |
bottom: 50px; | |
left: 20px; | |
} | |
#brushDiv { | |
position: fixed; | |
bottom: 130px; | |
left: 20px; | |
right: 20px; | |
height:50px; | |
background: white; | |
opacity: .75; | |
} | |
.brush .extent { | |
fill-opacity: .90; | |
shape-rendering: crispEdges; | |
} | |
svg { | |
width: 100%; | |
height:100%; | |
} | |
button { | |
font-family: 'Indie Flower', cursive; | |
border-radius: 5px; | |
font-size: 14px; | |
} | |
button.topology { | |
background: darkgray; | |
color: white; | |
cursor: pointer; | |
} | |
button.projection:hover { | |
background: black; | |
color: white; | |
} | |
button.projection { | |
background: #B8B894; | |
color: white; | |
cursor: pointer; | |
} | |
button.topology:hover { | |
background: black; | |
color: white; | |
} | |
button.node-appearance { | |
background: gray; | |
color: white; | |
cursor: pointer; | |
} | |
button.node-appearance:hover { | |
background: black; | |
color: white; | |
} |
This file contains 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
gexfD3 = | |
function () { | |
var nodes = []; | |
var links = []; | |
var linksFile = ""; | |
var fileName = ""; | |
var xExtent = []; | |
var yExtent = []; | |
var nodeScale = [1,10]; | |
var layoutSize = [500,500]; | |
var sizeExtent = []; | |
var dAtt = ""; | |
var dynamicExtent = []; | |
var sizeScale, xScale, yScale, dynamicScale; | |
var gexfD3Brush = d3.svg.brush(); | |
var linkAttributes = []; | |
var nodeAttributes = []; | |
var nodeHash = {}; | |
this.graph = function(gexfParsed) { | |
if (!arguments.length) return true; | |
var gNodes = gexfParsed.nodes; | |
var gLinks = gexfParsed.edges; | |
nodes = []; | |
links = []; | |
nodeHash = {}; | |
//Create JSON nodes array | |
var x = 0; | |
gNodes.forEach(function(gNode) { | |
var newNode = {id: x, properties: {}}; | |
newNode.label = gNode.label || gNode.id; | |
newNode.rgbColor = gNode.viz.color || "rgb(122,122,122)"; | |
newNode.x = gNode.viz.position.x; | |
newNode.y = gNode.viz.position.y; | |
newNode.z = gNode.viz.position.z; | |
newNode.originalX = newNode.x; | |
newNode.originalY = newNode.y; | |
newNode.size = gNode.viz.size; | |
nodeHash[gNode.id] = newNode; | |
for (y in gNode.attributes) { | |
if (!(typeof(gNode.attributes[y]) === "undefined") && !(gNode.attributes[y].toString() == "NaN" )) { | |
newNode.properties[y] = gNode.attributes[y]; | |
} | |
} | |
nodes.push(newNode); | |
x++; | |
}) | |
//get node attributes based on attributes in the first node | |
//this won't work for assymetrical node attributes | |
nodeAttributes = d3.keys(nodes[0].properties); | |
//Create JSON links array | |
var x = 0; | |
while (x < gLinks.length) { | |
var newLink = {id: x, properties: {}}; | |
newLink.source = nodeHash[gLinks[x].source]; | |
newLink.target = nodeHash[gLinks[x].target]; | |
newLink.properties.weight = gLinks[x].weight; | |
//process attributes | |
for (y in gLinks[x].attributes) { | |
newLink.properties[y] = gLinks[x].attributes[y]; | |
y++; | |
} | |
links.push(newLink) | |
x++; | |
} | |
linkAttributes = d3.keys(links[0].properties); | |
sizeExtent = d3.extent(nodes, function(d) {return parseFloat(d.size)}) | |
sizeScale = d3.scale.linear().domain(sizeExtent).range(nodeScale); | |
return this; | |
} | |
this.nodes = function(incNodes) { | |
if (!arguments.length) return nodes; | |
nodes = incNodes; | |
return this; | |
} | |
this.links = function(incLinks) { | |
if (!arguments.length) return links; | |
links = incLinks | |
return this; | |
} | |
this.linkAttributes = function(incAtts) { | |
if (!arguments.length) return linkAttributes; | |
linkAttributes = incAtts; | |
return this; | |
} | |
this.nodeAttributes = function(incAtts) { | |
if (!arguments.length) return nodeAttributes; | |
nodeAttributes = incAtts; | |
return this; | |
} | |
this.nodeScale = function(incScale) { | |
if (!arguments.length) return sizeScale; | |
nodeScale = incScale; | |
sizeScale = d3.scale.linear().domain(sizeExtent).range(nodeScale); | |
return this; | |
} | |
this.overwriteLinks = function(data) { | |
if (!arguments.length) return nodes; | |
//OVERWRITE links for parallel links | |
links = []; | |
for (x in data) { | |
var newLink = {id: x, properties: {}}; | |
newLink.source = nodeHash[data[x].source]; | |
newLink.target = nodeHash[data[x].target]; | |
newLink.id = x; | |
newLink.properties.type = "base"; | |
newLink.properties.year = data[x].year; | |
//process attributes | |
if (newLink.source && newLink.target) { | |
links.push(newLink); | |
} | |
x++; | |
} | |
linkAttributes = d3.keys(links[0].properties); | |
return this; | |
} | |
this.size = function(incSize) { | |
if (!arguments.length) return layoutSize; | |
//Measure | |
layoutSize = incSize; | |
xExtent = d3.extent(nodes, function(d) {return parseFloat(d.x)}) | |
yExtent = d3.extent(nodes, function(d) {return parseFloat(d.y)}) | |
xScale = d3.scale.linear().domain(xExtent).range([0,layoutSize[0]]); | |
yScale = d3.scale.linear().domain(yExtent).range([layoutSize[1],0]); | |
return this; | |
} | |
this.dynamicAttribute = function(incAtt) { | |
if (!arguments.length) return dAtt; | |
dAtt = incAtt; | |
var nDE = [Infinity, -Infinity]; | |
var lDE = [Infinity, -Infinity]; | |
if (nodeAttributes.indexOf(dAtt) > -1) { | |
//currently filters out 0 entries | |
// nDE = d3.extent(nodes, function(d) {return parseInt(d.properties[dAtt])}) | |
nDE = d3.extent(nodes.filter(function(p) {return p.properties[dAtt] != 0}), function(d) {return parseInt(d.properties[dAtt])}) | |
} | |
if (linkAttributes.indexOf(dAtt) > -1) { | |
// lDE = d3.extent(links, function(d) {return parseInt(d.properties[dAtt])}) | |
lDE = d3.extent(links.filter(function(p) {return p.properties[dAtt] != 0}), function(d) {return parseInt(d.properties[dAtt])}) | |
} | |
dynamicExtent = [Math.min(nDE[0],lDE[0]), Math.max(nDE[1],lDE[1])] | |
dynamicScale = d3.scale.linear().domain(dynamicExtent).range([0,layoutSize[0]]); | |
return this; | |
} | |
this.dynamicBrush = function(incSelection) { | |
if (!arguments.length) return gexfD3Brush; | |
gexfD3Brush | |
.x(dynamicScale) | |
.extent(dynamicExtent) | |
var brushAxis = d3.svg.axis().scale(dynamicScale).orient("bottom").tickSize(-40).ticks(20).tickFormat(d3.format("d")); | |
incSelection.append("g").attr("id", "bgAxis").append("g").attr("transform", "translate(50,35)").call(brushAxis) | |
incSelection.append("g").attr("id", "fgBrush").attr("transform", "translate(50,0)") | |
.call(gexfD3Brush) | |
.selectAll("rect").attr("height", 35); | |
return this; | |
} | |
this.xScale = function(newScale) { | |
if (!arguments.length) return xScale; | |
xScale = newScale; | |
return this; | |
} | |
this.yScale = function(newScale) { | |
if (!arguments.length) return yScale; | |
yScale = newScale; | |
return this; | |
} | |
return this; | |
} |
This file contains 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
<html xmlns="http://www.w3.org/1999/xhtml"> | |
<head> | |
<title>Sketchy HILT Tweets Burshable by Centrality</title> | |
<meta charset="utf-8" /> | |
<link type="text/css" rel="stylesheet" href="gexfd3.css" /> | |
<link href='http://fonts.googleapis.com/css?family=Indie+Flower' rel='stylesheet' type='text/css'> | |
</head> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script src="http://d3js.org/colorbrewer.v1.min.js"></script> | |
<script src="d3.sketchy.js"></script> | |
<script src="parser.js" type="text/javascript"> | |
</script> | |
<script src="gexfd3.js" type="text/javascript"> | |
</script> | |
<body onload="loadGraph('tweets.gexf')"> | |
<div id="vizcontainer" style="width:100%;height:100%"> | |
<canvas style="background: white;1000px;width:1000px;position:absolute;z-index:-1;" height=1000 width=1000></canvas> | |
<svg id="graphSVG" style="border:1px lightgray solid;"> | |
<g id="graphG" /> | |
<div id="modal"><div id="content"></div><button id="modalClose" onclick="nodeFocus=false;nodeOut();d3.select('#modal').style('display','none');">X</button></div> | |
</div> | |
<div id="controls"> | |
</div> | |
<div id="brushDiv" style="background: rgba(255,255,255,0.85);opacity: .95;"> | |
<div id="brushTitle" style="color:black;font-weight: 900;position: absolute;left:150px;top:24px;font-size: 26px;opacity: .75;z-index: 0;">More Central</div> | |
<div id="brushTitle" style="color:black;font-weight: 900;position: absolute;right:100px;top:24px;font-size: 26px;opacity: .75;z-index: 0;">Less Central</div> | |
<div style="position:absolute;width:100%;"><svg style="width:100%;height:80px;"><g id="brushG" class="brush" transform="translate(50,20)"></g></svg></div></div> | |
<footer> | |
<script> | |
nodeFocus = false; | |
currentBrush =[0,0]; | |
docHash = {}; | |
allLinks = []; | |
currentScale = 0; | |
function loadGraph(sourceGEXF) { | |
newGEXF = GexfParser.fetch(sourceGEXF); | |
gD3 = gexfD3().graph(newGEXF).size([1000,1000]).dynamicAttribute("centrality"); | |
force = d3.layout.force() | |
.charge(-200) | |
.linkDistance(50) | |
.size([1000, 1000]) | |
.gravity(.1) | |
.on("tick", redrawGraph) | |
d3.select("#brushG").call(gD3.dynamicBrush); | |
// d3.select("#brushG").selectAll("g.resize").append("circle").attr("r", 15).style("stroke", d3.sketchy.randomColor("black", .2)).style("fill", d3.sketchy.randomColor("white", .2)).attr("cy", 17) | |
d3.select("#brushG").select("rect.extent").style("fill-opacity", .5) | |
var randomWidth = d3.scale.linear().domain([0,1]).range([10,30]); | |
var e = randomWidth(Math.random()); | |
console.log(e); | |
var sketchyCircle = d3.sketchy.circle(); | |
sketchyCircle | |
.radius(20) | |
.cx(0) | |
.cy(17) | |
.fill(d3.sketchy.randomColor("white",.05)) | |
.stroke("black") | |
.strokeWidth(e); | |
d3.select("#brushG").select("g.e").call(sketchyCircle); | |
var e = randomWidth(Math.random()); | |
console.log(e); | |
var sketchyCircle2 = d3.sketchy.circle(); | |
sketchyCircle2 | |
.radius(20) | |
.cx(0) | |
.cy(17) | |
.fill(d3.sketchy.randomColor("white",.05)) | |
.stroke("black") | |
.strokeWidth(e); | |
d3.select("#brushG").select("g.w").call(sketchyCircle2); | |
gD3.dynamicBrush().on("brush", brushMove); | |
zoom = d3.behavior.zoom() | |
.scaleExtent([.1, 10]) | |
.on("zoom", zoomed); | |
allLinks = gD3.links(); | |
for (x in allLinks) { | |
allLinks[x]["highlighted"] = false; | |
} | |
brushMove(); | |
d3.select("svg").call(zoom); | |
createControls(); | |
zoomed(); | |
} | |
function highlightNeighbors(d,i) { | |
var nodeNeighbors = findNeighbors(d,i); | |
d3.selectAll("g.node").each(function(p) { | |
var isNeighbor = nodeNeighbors.nodes.indexOf(p); | |
d3.select(this).select("circle") | |
.style("opacity", isNeighbor > -1 ? 1 : .25) | |
.style("stroke-width", isNeighbor > -1 ? 3 : 1) | |
.style("stroke", isNeighbor > -1 ? d3.sketchy.randomColor("blue", .1) : d3.sketchy.randomColor("white", .1)) | |
}) | |
nodeNeighbors.links.forEach(function (link){ | |
link.highlighted = true; | |
}) | |
redrawGraph(); | |
} | |
function findNeighbors(d,i) { | |
neighborArray = [d]; | |
var linkArray = []; | |
filteredLinks.filter(function(p) {return p.source == d || p.target == d}).forEach(function(p) { | |
neighborArray.indexOf(p.source) == -1 ? neighborArray.push(p.source) : null; | |
neighborArray.indexOf(p.target) == -1 ? neighborArray.push(p.target) : null; | |
linkArray.push(p); | |
}) | |
return {nodes: neighborArray, links: linkArray}; | |
} | |
function zoomed() { | |
force.stop(); | |
var canvWidth = parseInt(d3.select("#vizcontainer").style("width")); | |
var canvHeight = parseInt(d3.select("#vizcontainer").style("height")); | |
var canvasTranslate = zoom.translate(); | |
currentScale = zoom.scale(); | |
var halfCanvas = canvHeight / 2; | |
var zoomLevel = halfCanvas * currentScale; | |
gD3.xScale().range([(halfCanvas - zoomLevel) + canvasTranslate[0], (halfCanvas + zoomLevel) + canvasTranslate[0]]); | |
gD3.yScale().range([(halfCanvas + zoomLevel) + canvasTranslate[1], (halfCanvas - zoomLevel) + canvasTranslate[1]]); | |
redrawGraph(); | |
} | |
function createControls() { | |
d3.select("#controls").append("button").attr("class", "origButton topology").html("Force On").on("click", function() { | |
force.start();}) | |
d3.select("#controls").append("button").attr("class", "origButton topology").html("Force Off").on("click", function() { | |
force.stop();}) | |
d3.select("#controls").append("button").attr("class", "origButton topology").html("Reset Layout").on("click", function() { | |
force.stop(); | |
gD3.nodes().forEach(function (el) {el.x = el.originalX;el.px = el.originalX;el.y = el.originalY;el.py = el.originalY;}); | |
currentBrush = [0,0]; | |
brushMove(); | |
redrawGraph(); | |
}) | |
d3.select("#controls").append("button").attr("class", "origButton node-appearance").html("Reset Colors").on("click", function() { | |
var sizeScale = gD3.nodeScale(); | |
d3.selectAll("circle") | |
.attr("r", function (d) {return sizeScale(d.size)}) | |
.style("fill", function(d) {return d3.sketchy.randomColor(d.rgbColor,.05)}) | |
.style("opacity", 1); | |
}) | |
d3.select("#controls").selectAll("button.nodeButtons").data(gD3.nodeAttributes()) | |
.enter() | |
.append("button") | |
.attr("class", "nodeButtons node-appearance") | |
.on("click", nodeButtonClick) | |
.html(function(d) {return d}); | |
d3.select("#controls").selectAll("button.linkButtons").data(gD3.linkAttributes()) | |
.enter() | |
.append("button") | |
.attr("class", "linkButtons node-appearance") | |
.on("click", linkButtonClick) | |
.html(function(d) {return d}); | |
} | |
function nodeButtonClick(d,i) { | |
var nodeAttExtent = d3.extent(filteredNodes, function(p) {return parseFloat(p.properties[d])}); | |
var colorScale = d3.scale.quantize().domain(nodeAttExtent).range(colorbrewer.YlGnBu[6]); | |
d3.selectAll("circle").style("fill", function(d) {return d3.sketchy.randomColor(colorScale(p.properties[d]),.05)}).style("opacity", 1) | |
} | |
function linkButtonClick(d,i) { | |
var linkAttExtent = d3.extent(filteredLinks, function(p) {return parseFloat(p.properties[d])}); | |
var colorScale = d3.scale.quantize().domain(linkAttExtent).range(colorbrewer.YlGnBu[6]); | |
d3.selectAll("line").style("stroke", function(d) {return d3.sketchy.randomColor(colorScale(p.properties[d]),.05)}).style("opacity", 1) | |
} | |
function redrawGraph() { | |
var xScale = gD3.xScale(); | |
var yScale = gD3.yScale(); | |
var context = d3.select("canvas").node | |
var canvas = d3.select("canvas").node(); | |
var context = canvas.getContext("2d"); | |
context.clearRect (0,0,canvas.width,canvas.height); | |
context.lineWidth = 1; | |
context.strokeStyle = "rgba(0, 0, 0, 0.5)"; | |
filteredLinks.forEach(function (link) { | |
context.beginPath(); | |
context.moveTo(xScale(link.source.x),yScale(link.source.y)) | |
context.lineTo(xScale(link.target.x),yScale(link.target.y)) | |
context.stroke(); | |
}) | |
context.lineWidth = 2; | |
context.strokeStyle = "rgba(0, 255, 122, 0.75)"; | |
filteredLinks.filter(function (d) {return d.highlighted}).forEach(function (link) { | |
context.beginPath(); | |
context.moveTo(xScale(link.source.x),yScale(link.source.y)) | |
context.lineTo(xScale(link.target.x),yScale(link.target.y)) | |
context.stroke(); | |
}) | |
d3.selectAll("g.node") | |
.attr("transform", function(d) {return "translate(" + xScale(d.x) + "," + yScale(d.y) + ")"}); | |
} | |
function collapseNetwork(collapseVector) { | |
currentBrush = [0,0]; | |
dAtt = gD3.dynamicAttribute(); | |
if (collapseVector == "base") { | |
gD3.links(allLinks); | |
brushMove(); | |
return; | |
} | |
newLinks = []; | |
for (x in allLinks) { | |
if (allLinks[x].source.properties.type == collapseVector) { | |
for (y in allLinks) { | |
if (allLinks[y].source.properties.type == collapseVector) { | |
if (allLinks[y].target == allLinks[x].target && (allLinks[y].properties[dAtt] || allLinks[y].source.properties[dAtt]) == (allLinks[x].properties[dAtt] || allLinks[x].source.properties[dAtt])) { | |
var newLink = {id: collapseVector + newLinks.length, source: allLinks[x].source, target: allLinks[y].source, properties: {}}; | |
if (gD3.linkAttributes().indexOf(dAtt) > -1) { | |
newLink.properties[dAtt] = allLinks[x].properties[dAtt]; | |
} | |
else if (gD3.nodeAttributes().indexOf(dAtt) > -1) { | |
newLink.properties[dAtt] = allLinks[y].target.properties[dAtt]; | |
} | |
newLinks.push(newLink); | |
} | |
} | |
} | |
} | |
else if (allLinks[x].target.properties.type == collapseVector) { | |
for (y in allLinks) { | |
if (allLinks[y].target.properties.type == collapseVector) { | |
if (allLinks[y].source == allLinks[x].source && (allLinks[y].properties[dAtt] || allLinks[y].target.properties[dAtt]) == (allLinks[x].properties[dAtt] || allLinks[x].target.properties[dAtt])) { | |
var newLink = {id: collapseVector + newLinks.length, source: allLinks[x].target, target: allLinks[y].target, properties: {}}; | |
if (gD3.linkAttributes().indexOf(dAtt) > -1) { | |
newLink.properties[dAtt] = allLinks[x].properties[dAtt]; | |
} | |
else if (gD3.nodeAttributes().indexOf(dAtt) > -1) { | |
newLink.properties[dAtt] = allLinks[y].source.properties[dAtt]; | |
} | |
newLinks.push(newLink); | |
} | |
} | |
} | |
} | |
} | |
console.log(newLinks) | |
gD3.links(newLinks); | |
brushMove(); | |
redrawGraph(); | |
} | |
function brushMove() { | |
var s = gD3.dynamicBrush().extent(); | |
var dAtt = gD3.dynamicAttribute(); | |
var xScale = gD3.xScale(); | |
var yScale = gD3.yScale(); | |
var sizeScale = gD3.nodeScale(); | |
if (Math.ceil(s[0]) == currentBrush[0] && Math.floor(s[1]) == currentBrush[1]) { | |
return; | |
} | |
else { | |
currentBrush[0] = Math.floor(s[0]); | |
currentBrush[1] = Math.ceil(s[1]); | |
} | |
var forceRunning = false; | |
if (force.alpha() > 0) { | |
force.stop(); | |
forceRunning = true; | |
} | |
if (typeof gD3.links()[0].properties["startyr"] != "undefined") { | |
filteredLinks = gD3.links().filter(function (d) {return d.properties[dAtt] == 0 || (d.properties[dAtt] >= currentBrush[0] && d.properties[dAtt] <= currentBrush[1])}); | |
sourceNodes = filteredLinks.map(function (el) {return el.source}); | |
targetNodes = filteredLinks.map(function (el) {return el.target}); | |
filteredNodes = gD3.nodes().filter(function (d) {return sourceNodes.indexOf(d) > -1 || targetNodes.indexOf(d) > -1}); | |
} | |
else { | |
filteredLinks = gD3.links(); | |
filteredNodes = gD3.nodes(); | |
} | |
if (gD3.nodeAttributes().indexOf(dAtt) > -1) { | |
filteredNodes = filteredNodes.filter(function (d) {return d.properties[dAtt] == 0 || (d.properties[dAtt] >= currentBrush[0] && d.properties[dAtt] <= currentBrush[1])}); | |
nodeIDs = filteredNodes.map(function (el) {return el.id}) | |
filteredLinks = filteredLinks.filter(function (d) {return nodeIDs.indexOf(d.source.id) > -1 && nodeIDs.indexOf(d.target.id) > -1}) | |
} | |
d3.select("#graphG").selectAll("g.node").data(filteredNodes, function (d) {return d.id}) | |
.enter() | |
.append("g") | |
.attr("class", "node") | |
.attr("transform", function(d) {return "translate(" + xScale(d.x) + "," + yScale(d.y) + ")"}) | |
.on("mouseover", nodeOver) | |
.on("mouseout", nodeOut) | |
.on("click", nodeClick) | |
.each(function(d) { | |
var randomWidth = d3.scale.linear().domain([0,1]).range([2,3]); | |
var e = randomWidth(Math.random()); | |
var sketchyCircle = d3.sketchy.circle(); | |
sketchyCircle | |
.radius(5) | |
.cx(0) | |
.cy(0) | |
.fill(d3.sketchy.randomColor(d.rgbColor,.05)) | |
.stroke("black") | |
.strokeWidth(e); | |
d3.select(this).call(sketchyCircle) | |
}) | |
d3.selectAll("g.node").data(filteredNodes, function (d) {return d.id}) | |
.exit() | |
.remove(); | |
force | |
.nodes(filteredNodes) | |
.links(filteredLinks); | |
force.start(); | |
var maxWeight = d3.max(filteredNodes, function(d) {return d.weight || 0}); | |
if (maxWeight > 0) { | |
var nodeScale = d3.scale.linear().domain([1,maxWeight]).range([2,10]).clamp(true); | |
d3.selectAll("g.node").each(function(d) { | |
d3.select(this).selectAll(".sketchy").remove(); | |
var randomWidth = d3.scale.linear().domain([0,.25,1]).range([2,3,6]); | |
var e = randomWidth(Math.random()); | |
var sketchyCircle = d3.sketchy.circle(); | |
sketchyCircle | |
.radius(nodeScale(d.weight) || 0) | |
.cx(0) | |
.cy(0) | |
.fill(d3.sketchy.randomColor(d.rgbColor,.05)) | |
.stroke("black") | |
.strokeWidth(e); | |
d3.select(this).call(sketchyCircle) | |
}) | |
} | |
if (!forceRunning) { | |
force.stop(); | |
} | |
function nodeOver(d,i,e) { | |
var el = this; | |
if (!d3.event.fromElement) { | |
el = e; | |
} | |
if (nodeFocus) { | |
return; | |
} | |
//Only do the element stuff if this came from mouseover | |
el.parentNode.appendChild(el); | |
d3.select(el).append("text").attr("class", "hoverLabel").attr("stroke", d3.sketchy.randomColor("white", .1)).attr("stroke-width", "5px") | |
.style("opacity", .9) | |
.style("pointer-events", "none") | |
.text(d.label); | |
d3.select(el).append("text").attr("class", "hoverLabel") | |
.style("pointer-events", "none") | |
.text(d.label); | |
highlightNeighbors(d,i); | |
} | |
function nodeClick(d,i) { | |
nodeFocus = false; | |
nodeOut(); | |
nodeOver(d,i,this); | |
nodeFocus = true; | |
var newContent = "<p>" + d.label + "</p>"; | |
newContent += "<p>Attributes: </p><p><ul>"; | |
for (x in gD3.nodeAttributes()) { | |
newContent += "<li>" + gD3.nodeAttributes()[x] + ": " + d.properties[gD3.nodeAttributes()[x]]+ "</li>"; | |
} | |
newContent += "</ul></p><p>Connections:</p><ul>"; | |
var neighbors = findNeighbors(d,i); | |
for (x in neighbors.nodes) { | |
if (neighbors.nodes[x] != d) { | |
newContent += "<li>" + neighbors.nodes[x].label + "</li>"; | |
} | |
} | |
newContent += "</ul></p>"; | |
d3.select("#modal").style("display", "block").select("#content").html(newContent); | |
} | |
redrawGraph(); | |
gnarlifyBar(); | |
} | |
function createAnonymousEdgeTable() { | |
var htmlTable = "source,target,year<br>"; | |
for (x in gD3.links()) { | |
htmlTable+=gD3.links()[x].source.properties.type + "-" + gD3.nodes().indexOf(gD3.links()[x].source) + "," + gD3.links()[x].target.properties.type + "-" + gD3.nodes().indexOf(gD3.links()[x].target) + "," + gD3.links()[x].properties.year; | |
htmlTable+="<br>"; | |
} | |
d3.select("#content").html(htmlTable) | |
} | |
function nodeOut() { | |
if (nodeFocus) { | |
return; | |
} | |
d3.selectAll(".hoverLabel").remove(); | |
d3.selectAll("circle").style("opacity", 1).style("stroke", d3.sketchy.randomColor("black", .1)).style("stroke-width", "1px"); | |
filteredLinks.forEach(function (link) {link.highlighted = false}); | |
redrawGraph(); | |
} | |
function gnarlifyBar() { | |
d3.select("g.sketchy").remove(); | |
var x = parseInt(d3.selectAll("#brushG").select("rect.extent").attr("x")); | |
var y = 0; | |
var rw = parseInt(d3.selectAll("#brushG").select("rect.extent").attr("width")); | |
var rh = parseInt(d3.selectAll("#brushG").select("rect.extent").attr("height")); | |
var sketchyBrush = d3.sketchy.rect(); | |
sketchyBrush | |
.height(rh) | |
.width(rw) | |
.x(x) | |
.y(y) | |
.stroke("black") | |
.strokeWidth(10) | |
.jostle(5) | |
d3.select("#brushG > #fgBrush").insert("g", ".resize").attr("class", "sketchy").call(sketchyBrush); | |
d3.select("#brushG").select("rect.sketchy").remove(); | |
d3.select("#brushG").select("path.sketchy").style("pointer-events","none"); | |
d3.select("#brushG").select("rect.extent").style("fill", d3.sketchy.randomColor("pink",.075)) | |
} | |
</script> | |
</footer> | |
</body> | |
</html> |
This file contains 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
;(function(undefined) { | |
'use strict'; | |
/** | |
* GEXF Parser | |
* ============ | |
* | |
* Author: PLIQUE Guillaume (Yomguithereal) | |
* URL: https://github.com/Yomguithereal/gexf-parser | |
* Version: 1.0 | |
*/ | |
/** | |
* Helper Namespace | |
* ----------------- | |
* | |
* A useful batch of function dealing with DOM operations and types. | |
*/ | |
var _helpers = { | |
nodeListToArray: function(nodeList) { | |
// Return array | |
var children = []; | |
// Iterating | |
for (var i = 0, len = nodeList.length; i < len; ++i) { | |
if (nodeList[i].nodeName !== '#text') | |
children.push(nodeList[i]); | |
} | |
return children; | |
}, | |
nodeListEach: function(nodeList, func) { | |
// Iterating | |
for (var i = 0, len = nodeList.length; i < len; ++i) { | |
if (nodeList[i].nodeName !== '#text') | |
func(nodeList[i]); | |
} | |
}, | |
nodeListToHash: function(nodeList, filter) { | |
// Return object | |
var children = {}; | |
// Iterating | |
for (var i = 0; i < nodeList.length; i++) { | |
if (nodeList[i].nodeName !== '#text') { | |
var prop = filter(nodeList[i]); | |
children[prop.key] = prop.value; | |
} | |
} | |
return children; | |
}, | |
namedNodeMapToObject: function(nodeMap) { | |
// Return object | |
var attributes = {}; | |
// Iterating | |
for (var i = 0; i < nodeMap.length; i++) { | |
attributes[nodeMap[i].name] = nodeMap[i].value; | |
} | |
return attributes; | |
}, | |
getFirstElementByTagNS: function(node, ns, tag) { | |
var el = node.getElementsByTagName(ns + ':' + tag)[0]; | |
if (!el) | |
el = node.getElementsByTagNameNS(ns, tag)[0]; | |
if (!el) | |
el = node.getElementsByTagName(tag)[0]; | |
return el; | |
}, | |
getAttributeNS: function(node, ns, attribute) { | |
var attr_value = node.getAttribute(ns + ':' + attribute); | |
if (attr_value === undefined) | |
attr_value = node.getAttributeNS(ns, attribute); | |
if (attr_value === undefined) | |
attr_value = node.getAttribute(attribute); | |
return attr_value; | |
}, | |
enforceType: function(type, value) { | |
switch (type) { | |
case 'boolean': | |
value = (value === 'true'); | |
break; | |
case 'integer': | |
case 'long': | |
case 'float': | |
case 'double': | |
value = +value; | |
break; | |
} | |
return value; | |
}, | |
getRGB: function(values) { | |
return (values[3]) ? | |
'rgba(' + values.join(',') + ')' : | |
'rgb(' + values.slice(0, -1).join(',') + ')'; | |
} | |
}; | |
/** | |
* Parser Core Functions | |
* ---------------------- | |
* | |
* The XML parser's functions themselves. | |
*/ | |
/** | |
* Node structure. | |
* A function returning an object guarded with default value. | |
* | |
* @param {object} properties The node properties. | |
* @return {object} The guarded node object. | |
*/ | |
function Node(properties) { | |
// Possible Properties | |
return { | |
id: properties.id, | |
label: properties.label, | |
attributes: properties.attributes || {}, | |
viz: properties.viz || {} | |
}; | |
} | |
/** | |
* Edge structure. | |
* A function returning an object guarded with default value. | |
* | |
* @param {object} properties The edge properties. | |
* @return {object} The guarded edge object. | |
*/ | |
function Edge(properties) { | |
// Possible Properties | |
return { | |
id: properties.id, | |
type: properties.type || 'undirected', | |
label: properties.label || '', | |
source: properties.source, | |
target: properties.target, | |
weight: +properties.weight || 1.0, | |
viz: properties.viz || {} | |
}; | |
} | |
/** | |
* Graph parser. | |
* This structure parse a gexf string and return an object containing the | |
* parsed graph. | |
* | |
* @param {string} xml The xml string of the gexf file to parse. | |
* @return {object} The parsed graph. | |
*/ | |
function Graph(xml) { | |
var _xml = {}; | |
// Basic Properties | |
//------------------ | |
_xml.els = { | |
root: xml.getElementsByTagName('gexf')[0], | |
graph: xml.getElementsByTagName('graph')[0], | |
meta: xml.getElementsByTagName('meta')[0], | |
model: xml.getElementsByTagName('attribute'), | |
nodes: xml.getElementsByTagName('node'), | |
edges: xml.getElementsByTagName('edge') | |
}; | |
_xml.hasViz = !!_helpers.getAttributeNS(_xml.els.root, 'xmlns', 'viz'); | |
_xml.version = _xml.els.root.getAttribute('version') || '1.0'; | |
_xml.mode = _xml.els.graph.getAttribute('mode') || 'static'; | |
var edgeType = _xml.els.graph.getAttribute('defaultedgetype'); | |
_xml.defaultEdgetype = edgeType || 'undirected'; | |
// Parser Functions | |
//------------------ | |
// Meta Data | |
function _metaData() { | |
var metas = {}; | |
if (!_xml.els.meta) | |
return metas; | |
// Last modified date | |
metas.lastmodifieddate = _xml.els.meta.getAttribute('lastmodifieddate'); | |
// Other information | |
_helpers.nodeListEach(_xml.els.meta.childNodes, function(child) { | |
metas[child.tagName.toLowerCase()] = child.textContent; | |
}); | |
return metas; | |
} | |
// Model | |
function _model() { | |
var attributes = []; | |
// Iterating through attributes | |
_helpers.nodeListEach(_xml.els.model, function(attr) { | |
// Properties | |
var properties = { | |
id: attr.getAttribute('id') || attr.getAttribute('for'), | |
type: attr.getAttribute('type') || 'string', | |
title: attr.getAttribute('title') || '' | |
}; | |
// Defaults | |
var default_el = _helpers.nodeListToArray(attr.childNodes); | |
if (default_el.length > 0) | |
properties.defaultValue = default_el[0].textContent; | |
// Creating attribute | |
attributes.push(properties); | |
}); | |
return attributes; | |
} | |
// Nodes | |
function _nodes(model) { | |
var nodes = []; | |
// Iteration through nodes | |
_helpers.nodeListEach(_xml.els.nodes, function(n) { | |
// Basic properties | |
var properties = { | |
id: n.getAttribute('id'), | |
label: n.getAttribute('label') || '' | |
}; | |
// Retrieving data from nodes if any | |
if (model.length > 0) | |
properties.attributes = _nodeData(model, n); | |
// Retrieving viz information | |
if (_xml.hasViz) | |
properties.viz = _nodeViz(n); | |
// Pushing node | |
nodes.push(Node(properties)); | |
}); | |
return nodes; | |
} | |
// Data from nodes | |
function _nodeData(model, node) { | |
var data = {}; | |
var attvalues_els = node.getElementsByTagName('attvalue'); | |
// Getting Node Indicated Attributes | |
var ah = _helpers.nodeListToHash(attvalues_els, function(el) { | |
var attributes = _helpers.namedNodeMapToObject(el.attributes); | |
var key = attributes.id || attributes['for']; | |
// Returning object | |
return {key: key, value: attributes.value}; | |
}); | |
// Iterating through model | |
model.map(function(a) { | |
// Default value? | |
var att_title = a.title.toLowerCase(); | |
data[att_title] = !(a.id in ah) && 'defaultValue' in a ? | |
_helpers.enforceType(a.type, a.defaultValue) : | |
_helpers.enforceType(a.type, ah[a.id]); | |
}); | |
return data; | |
} | |
// Viz information from nodes | |
function _nodeViz(node) { | |
var viz = {}; | |
// Color | |
var color_el = _helpers.getFirstElementByTagNS(node, 'viz', 'color'); | |
if (color_el) { | |
var color = ['r', 'g', 'b', 'a'].map(function(c) { | |
return color_el.getAttribute(c); | |
}); | |
viz.color = _helpers.getRGB(color); | |
} | |
// Position | |
var pos_el = _helpers.getFirstElementByTagNS(node, 'viz', 'position'); | |
if (pos_el) { | |
viz.position = {}; | |
['x', 'y', 'z'].map(function(p) { | |
viz.position[p] = +pos_el.getAttribute(p); | |
}); | |
} | |
// Size | |
var size_el = _helpers.getFirstElementByTagNS(node, 'viz', 'size'); | |
if (size_el) | |
viz.size = +size_el.getAttribute('value'); | |
// Shape | |
var shape_el = _helpers.getFirstElementByTagNS(node, 'viz', 'shape'); | |
if (shape_el) | |
viz.shape = shape_el.getAttribute('value'); | |
return viz; | |
} | |
// Edges | |
function _edges(default_type) { | |
var edges = []; | |
// Iteration through edges | |
_helpers.nodeListEach(_xml.els.edges, function(e) { | |
// Creating the edge | |
var properties = _helpers.namedNodeMapToObject(e.attributes); | |
if (!('type' in properties)) { | |
properties.type = default_type; | |
} | |
// Retrieving viz information | |
if (_xml.hasViz) | |
properties.viz = _edgeViz(e); | |
edges.push(Edge(properties)); | |
}); | |
return edges; | |
} | |
// Viz information from edges | |
function _edgeViz(edge) { | |
var viz = {}; | |
// Color | |
var color_el = _helpers.getFirstElementByTagNS(edge, 'viz', 'color'); | |
if (color_el) { | |
var color = ['r', 'g', 'b', 'a'].map(function(c) { | |
return color_el.getAttribute(c); | |
}); | |
viz.color = _helpers.getRGB(color); | |
} | |
// Shape | |
var shape_el = _helpers.getFirstElementByTagNS(edge, 'viz', 'shape'); | |
if (shape_el) | |
viz.shape = shape_el.getAttribute('value'); | |
// Thickness | |
var thick_el = _helpers.getFirstElementByTagNS(edge, 'viz', 'thickness'); | |
if (thick_el) | |
viz.thickness = +thick_el.getAttribute('value'); | |
return viz; | |
} | |
// Returning the Graph | |
//--------------------- | |
_xml.model = _model(); | |
return { | |
version: _xml.version, | |
mode: _xml.mode, | |
defaultEdgeType: _xml.defaultEdgetype, | |
meta: _metaData(), | |
model: _xml.model, | |
nodes: _nodes(_xml.model), | |
edges: _edges(_xml.defaultEdgetype) | |
}; | |
} | |
/** | |
* Public API | |
* ----------- | |
* | |
* User-accessible functions. | |
*/ | |
// Fetching GEXF with XHR | |
function fetch(gexf_url, callback) { | |
var xhr = (function() { | |
if (window.XMLHttpRequest) | |
return new XMLHttpRequest(); | |
var names, | |
i; | |
if (window.ActiveXObject) { | |
names = [ | |
'Msxml2.XMLHTTP.6.0', | |
'Msxml2.XMLHTTP.3.0', | |
'Msxml2.XMLHTTP', | |
'Microsoft.XMLHTTP' | |
]; | |
for (i in names) | |
try { | |
return new ActiveXObject(names[i]); | |
} catch (e) {} | |
} | |
return null; | |
})(); | |
if (!xhr) | |
throw 'XMLHttpRequest not supported, cannot load the file.'; | |
// Async? | |
var async = (typeof callback === 'function'), | |
getResult; | |
// If we can't override MIME type, we are on IE 9 | |
// We'll be parsing the response string then. | |
if (xhr.overrideMimeType) { | |
xhr.overrideMimeType('text/xml'); | |
getResult = function(r) { | |
return r.responseXML; | |
}; | |
} | |
else { | |
getResult = function(r) { | |
var p = new DOMParser(); | |
return p.parseFromString(r.responseText, 'application/xml'); | |
}; | |
} | |
xhr.open('GET', gexf_url, async); | |
if (async) | |
xhr.onreadystatechange = function() { | |
if (xhr.readyState === 4) | |
callback(getResult(xhr)); | |
}; | |
xhr.send(); | |
return (async) ? xhr : getResult(xhr); | |
} | |
// Parsing the GEXF File | |
function parse(gexf) { | |
return Graph(gexf); | |
} | |
// Fetch and parse the GEXF File | |
function fetchAndParse(gexf_url, callback) { | |
if (typeof callback === 'function') { | |
return fetch(gexf_url, function(gexf) { | |
callback(Graph(gexf)); | |
}); | |
} else | |
return Graph(fetch(gexf_url)); | |
} | |
/** | |
* Exporting | |
* ---------- | |
*/ | |
this.GexfParser = { | |
// Functions | |
parse: parse, | |
fetch: fetchAndParse, | |
// Version | |
version: '0.1' | |
}; | |
}).call(this); |
This file contains 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
<?xml version="1.0" encoding="UTF-8"?> | |
<gexf xmlns="http://www.gexf.net/1.2draft" version="1.2" xmlns:viz="http://www.gexf.net/1.2draft/viz" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.gexf.net/1.2draft http://www.gexf.net/1.2draft/gexf.xsd"> | |
<meta lastmodifieddate="2014-08-08"> | |
<creator>Gephi 0.8.1</creator> | |
<description></description> | |
</meta> | |
<graph defaultedgetype="undirected" mode="static"> | |
<attributes class="node" mode="static"> | |
<attribute id="pageranks" title="PageRank" type="double"> | |
<default>0.0</default> | |
</attribute> | |
<attribute id="modularity_class" title="Modularity Class" type="integer"> | |
<default>0</default> | |
</attribute> | |
<attribute id="componentnumber" title="Component ID" type="integer"> | |
<default>0</default> | |
</attribute> | |
<attribute id="newClusteringCoefficient" title="Local Clustering Coefficient" type="double"> | |
<default>0.0</default> | |
</attribute> | |
<attribute id="type" title="type" type="string"></attribute> | |
<attribute id="centrality" title="centrality" type="integer"></attribute> | |
<attribute id="degree" title="Degree" type="integer"> | |
<default>0</default> | |
</attribute> | |
</attributes> | |
<nodes> | |
<node id="missy_librarian" label="missy_librarian"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0065250608"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.4444444444"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="34"></attvalue> | |
<attvalue for="degree" value="9"></attvalue> | |
</attvalues> | |
<viz:size value="7.7614355"></viz:size> | |
<viz:position x="-39.561897" y="616.42487" z="0.0"></viz:position> | |
<viz:color r="35" g="114" b="33"></viz:color> | |
</node> | |
<node id="EllenJoyce20" label="EllenJoyce20"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0043212441"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.5"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="44"></attvalue> | |
<attvalue for="degree" value="9"></attvalue> | |
</attvalues> | |
<viz:size value="6.7466908"></viz:size> | |
<viz:position x="-66.55192" y="468.67145" z="0.0"></viz:position> | |
<viz:color r="29" g="109" b="27"></viz:color> | |
</node> | |
<node id="OliviaDDorsey" label="OliviaDDorsey"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0023941708"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="74"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.8593726"></viz:size> | |
<viz:position x="-1354.5068" y="207.14447" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="DarinWaters_Phd" label="DarinWaters_Phd"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010632091"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="157"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.246533"></viz:size> | |
<viz:position x="7.3198776" y="673.19543" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="libconferences" label="libconferences"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.654204E-4"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="225"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1094165"></viz:size> | |
<viz:position x="67.862434" y="299.25903" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="galvan_as" label="galvan_as"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0121192352"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="17"></attvalue> | |
<attvalue for="degree" value="9"></attvalue> | |
</attvalues> | |
<viz:size value="10.337266"></viz:size> | |
<viz:position x="-0.11226163" y="288.14734" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Tracy_Jentzsch" label="Tracy_Jentzsch"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0172791719"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="10"></attvalue> | |
<attvalue for="degree" value="21"></attvalue> | |
</attvalues> | |
<viz:size value="12.713152"></viz:size> | |
<viz:position x="74.50857" y="598.4404" z="0.0"></viz:position> | |
<viz:color r="109" g="175" b="112"></viz:color> | |
</node> | |
<node id="asagbed" label="asagbed"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0060069221"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3214285714"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="37"></attvalue> | |
<attvalue for="degree" value="8"></attvalue> | |
</attvalues> | |
<viz:size value="7.5228596"></viz:size> | |
<viz:position x="-12.151024" y="534.26587" z="0.0"></viz:position> | |
<viz:color r="52" g="129" b="51"></viz:color> | |
</node> | |
<node id="stephabarn" label="stephabarn"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0031608476"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3571428571"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="56"></attvalue> | |
<attvalue for="degree" value="8"></attvalue> | |
</attvalues> | |
<viz:size value="6.212388"></viz:size> | |
<viz:position x="-13.4129715" y="746.5852" z="0.0"></viz:position> | |
<viz:color r="47" g="124" b="45"></viz:color> | |
</node> | |
<node id="UDMuseumStudies" label="UDMuseumStudies"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.450987E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="386"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.00797"></viz:size> | |
<viz:position x="-44.331993" y="387.77747" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="eiratansey" label="eiratansey"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0170398108"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="11"></attvalue> | |
<attvalue for="degree" value="11"></attvalue> | |
</attvalues> | |
<viz:size value="12.60294"></viz:size> | |
<viz:position x="239.33571" y="345.89313" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="JimMc_Grath" label="JimMc_Grath"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0494264277"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0525641026"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="2"></attvalue> | |
<attvalue for="degree" value="40"></attvalue> | |
</attvalues> | |
<viz:size value="27.515314"></viz:size> | |
<viz:position x="-495.45377" y="145.63512" z="0.0"></viz:position> | |
<viz:color r="133" g="195" b="138"></viz:color> | |
</node> | |
<node id="OurMarathon" label="OurMarathon"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0041246132"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="45"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="6.6561527"></viz:size> | |
<viz:position x="-515.0867" y="283.16815" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="readywriting" label="readywriting"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0391529544"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0285714286"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="3"></attvalue> | |
<attvalue for="degree" value="35"></attvalue> | |
</attvalues> | |
<viz:size value="22.784904"></viz:size> | |
<viz:position x="-1371.5889" y="339.99377" z="0.0"></viz:position> | |
<viz:color r="151" g="210" b="157"></viz:color> | |
</node> | |
<node id="aliciapeaker" label="aliciapeaker"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0088599467"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="26"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="8.836531"></viz:size> | |
<viz:position x="-580.1158" y="43.839714" z="0.0"></viz:position> | |
<viz:color r="20" g="102" b="17"></viz:color> | |
</node> | |
<node id="AnaSalter" label="AnaSalter"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.016493487"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.2272727273"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="12"></attvalue> | |
<attvalue for="degree" value="12"></attvalue> | |
</attvalues> | |
<viz:size value="12.351384"></viz:size> | |
<viz:position x="-1273.6587" y="175.89911" z="0.0"></viz:position> | |
<viz:color r="71" g="144" b="71"></viz:color> | |
</node> | |
<node id="Radishwak" label="Radishwak"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.264748E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="274"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.091484"></viz:size> | |
<viz:position x="-246.53763" y="692.30896" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="mia_out" label="mia_out"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.02104285"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1014492754"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="6"></attvalue> | |
<attvalue for="degree" value="24"></attvalue> | |
</attvalues> | |
<viz:size value="14.446133"></viz:size> | |
<viz:position x="-186.07172" y="635.87164" z="0.0"></viz:position> | |
<viz:color r="109" g="175" b="111"></viz:color> | |
</node> | |
<node id="wragge" label="wragge"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.001199309"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="134"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.3092003"></viz:size> | |
<viz:position x="589.8113" y="-56.54712" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="jy_kim29" label="jy_kim29"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0031207487"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="57"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="6.1939244"></viz:size> | |
<viz:position x="-1638.8099" y="37.41736" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="trevormunoz" label="trevormunoz"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0173558999"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0151515152"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="9"></attvalue> | |
<attvalue for="degree" value="12"></attvalue> | |
</attvalues> | |
<viz:size value="12.748482"></viz:size> | |
<viz:position x="-651.72534" y="579.7398" z="0.0"></viz:position> | |
<viz:color r="166" g="222" b="172"></viz:color> | |
</node> | |
<node id="BitCurator" label="BitCurator"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.97284E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="204"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.170133"></viz:size> | |
<viz:position x="-1694.9858" y="35.780518" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="UMD_MITH" label="UMD_MITH"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0108509097"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1363636364"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="21"></attvalue> | |
<attvalue for="degree" value="12"></attvalue> | |
</attvalues> | |
<viz:size value="9.753267"></viz:size> | |
<viz:position x="591.28784" y="-196.28674" z="0.0"></viz:position> | |
<viz:color r="96" g="164" b="98"></viz:color> | |
</node> | |
<node id="GeorgeOnline" label="GeorgeOnline"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0368248651"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0265151515"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="4"></attvalue> | |
<attvalue for="degree" value="33"></attvalue> | |
</attvalues> | |
<viz:size value="21.71294"></viz:size> | |
<viz:position x="-1469.3899" y="49.161133" z="0.0"></viz:position> | |
<viz:color r="153" g="211" b="159"></viz:color> | |
</node> | |
<node id="sgahistory" label="sgahistory"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0150003131"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="14"></attvalue> | |
<attvalue for="degree" value="12"></attvalue> | |
</attvalues> | |
<viz:size value="11.663855"></viz:size> | |
<viz:position x="543.45105" y="544.7809" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="wayne_graham" label="wayne_graham"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0039658351"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.380952381"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="48"></attvalue> | |
<attvalue for="degree" value="7"></attvalue> | |
</attvalues> | |
<viz:size value="6.583043"></viz:size> | |
<viz:position x="-883.37976" y="255.20389" z="0.0"></viz:position> | |
<viz:color r="43" g="121" b="42"></viz:color> | |
</node> | |
<node id="walshbr" label="walshbr"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0035107267"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="53"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="6.3734894"></viz:size> | |
<viz:position x="-885.4276" y="316.80362" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="neptunemir" label="neptunemir"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0019893119"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="85"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.672956"></viz:size> | |
<viz:position x="-75.19153" y="83.79849" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="HILT_MITH" label="HILT_MITH"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0548226588"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0451612903"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="1"></attvalue> | |
<attvalue for="degree" value="31"></attvalue> | |
</attvalues> | |
<viz:size value="30.0"></viz:size> | |
<viz:position x="0.0021808252" y="0.26339996" z="0.0"></viz:position> | |
<viz:color r="138" g="199" b="143"></viz:color> | |
</node> | |
<node id="brandontlocke" label="brandontlocke"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0099901236"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.5"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="22"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="9.35692"></viz:size> | |
<viz:position x="261.86807" y="-311.4572" z="0.0"></viz:position> | |
<viz:color r="29" g="109" b="27"></viz:color> | |
</node> | |
<node id="DaliaGuerreiro" label="DaliaGuerreiro"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="342"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1416.0479" y="-54.10266" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="BlindFilmCritic" label="BlindFilmCritic"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.502798E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="233"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.102445"></viz:size> | |
<viz:position x="-1553.7124" y="30.390686" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="MA_SouthAust" label="MA_SouthAust"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.439603E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="387"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.007446"></viz:size> | |
<viz:position x="-275.34442" y="701.3567" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ardeninred" label="ardeninred"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0089823552"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1025641026"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="25"></attvalue> | |
<attvalue for="degree" value="13"></attvalue> | |
</attvalues> | |
<viz:size value="8.892893"></viz:size> | |
<viz:position x="-893.2354" y="393.0206" z="0.0"></viz:position> | |
<viz:color r="108" g="175" b="111"></viz:color> | |
</node> | |
<node id="DrTonieshaT" label="DrTonieshaT"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0127182508"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0769230769"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="16"></attvalue> | |
<attvalue for="degree" value="13"></attvalue> | |
</attvalues> | |
<viz:size value="10.613082"></viz:size> | |
<viz:position x="-513.6045" y="-241.47437" z="0.0"></viz:position> | |
<viz:color r="120" g="184" b="123"></viz:color> | |
</node> | |
<node id="jenguiliano" label="jenguiliano"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0140903318"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.2435897436"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="15"></attvalue> | |
<attvalue for="degree" value="13"></attvalue> | |
</attvalues> | |
<viz:size value="11.244855"></viz:size> | |
<viz:position x="-662.2802" y="75.38831" z="0.0"></viz:position> | |
<viz:color r="67" g="141" b="67"></viz:color> | |
</node> | |
<node id="bendigle" label="bendigle"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.003813832"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="51"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="6.513054"></viz:size> | |
<viz:position x="-949.2823" y="285.9097" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="MeghaninMotion" label="MeghaninMotion"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0039946795"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.7142857143"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="47"></attvalue> | |
<attvalue for="degree" value="7"></attvalue> | |
</attvalues> | |
<viz:size value="6.596325"></viz:size> | |
<viz:position x="-102.86497" y="530.5061" z="0.0"></viz:position> | |
<viz:color r="12" g="96" b="9"></viz:color> | |
</node> | |
<node id="canlift40lbs" label="canlift40lbs"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0022999463"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3333333333"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="77"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.815987"></viz:size> | |
<viz:position x="-134.4863" y="734.7754" z="0.0"></viz:position> | |
<viz:color r="50" g="127" b="49"></viz:color> | |
</node> | |
<node id="fraistat" label="fraistat"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0091517477"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3333333333"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="24"></attvalue> | |
<attvalue for="degree" value="7"></attvalue> | |
</attvalues> | |
<viz:size value="8.97089"></viz:size> | |
<viz:position x="-162.38458" y="419.58636" z="0.0"></viz:position> | |
<viz:color r="50" g="127" b="49"></viz:color> | |
</node> | |
<node id="miniaturekites" label="miniaturekites"> | |
<attvalues> | |
<attvalue for="pageranks" value="6.37364E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="300"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.050453"></viz:size> | |
<viz:position x="-1088.619" y="196.30984" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="michelletiedje" label="michelletiedje"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0032460966"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="55"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="6.251641"></viz:size> | |
<viz:position x="-1035.4716" y="169.76749" z="0.0"></viz:position> | |
<viz:color r="109" g="175" b="112"></viz:color> | |
</node> | |
<node id="isharacomix" label="isharacomix"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0011181284"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="139"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2718205"></viz:size> | |
<viz:position x="-1411.0822" y="209.7154" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="amycep" label="amycep"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0086132541"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.2909090909"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="27"></attvalue> | |
<attvalue for="degree" value="11"></attvalue> | |
</attvalues> | |
<viz:size value="8.722941"></viz:size> | |
<viz:position x="-97.69903" y="-57.46173" z="0.0"></viz:position> | |
<viz:color r="58" g="133" b="57"></viz:color> | |
</node> | |
<node id="Feminist_Energy" label="Feminist_Energy"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0014917824"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="104"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.443869"></viz:size> | |
<viz:position x="-81.31138" y="-2.0941436" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="digitaldante" label="digitaldante"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0050290982"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="41"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="7.0726213"></viz:size> | |
<viz:position x="-140.19377" y="-112.769905" z="0.0"></viz:position> | |
<viz:color r="56" g="132" b="55"></viz:color> | |
</node> | |
<node id="sjappleford" label="sjappleford"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0055052858"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.4"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="40"></attvalue> | |
<attvalue for="degree" value="6"></attvalue> | |
</attvalues> | |
<viz:size value="7.2918816"></viz:size> | |
<viz:position x="-517.0132" y="-34.014412" z="0.0"></viz:position> | |
<viz:color r="41" g="119" b="39"></viz:color> | |
</node> | |
<node id="KevinBGunn" label="KevinBGunn"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0073587343"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3055555556"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="30"></attvalue> | |
<attvalue for="degree" value="9"></attvalue> | |
</attvalues> | |
<viz:size value="8.1453"></viz:size> | |
<viz:position x="-640.47656" y="-28.312328" z="0.0"></viz:position> | |
<viz:color r="55" g="131" b="54"></viz:color> | |
</node> | |
<node id="TranscribeSI" label="TranscribeSI"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.002343515"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.7"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="75"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="5.836048"></viz:size> | |
<viz:position x="38.337868" y="491.61792" z="0.0"></viz:position> | |
<viz:color r="13" g="97" b="10"></viz:color> | |
</node> | |
<node id="pwolsen" label="pwolsen"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0013313579"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="114"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.370002"></viz:size> | |
<viz:position x="225.61758" y="247.28572" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ashleyyoung2010" label="ashleyyoung2010"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0029136552"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="61"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="6.0985684"></viz:size> | |
<viz:position x="395.03244" y="-183.20474" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="nickfalkner" label="nickfalkner"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0176346291"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0454545455"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="7"></attvalue> | |
<attvalue for="degree" value="12"></attvalue> | |
</attvalues> | |
<viz:size value="12.8768215"></viz:size> | |
<viz:position x="-33.511078" y="-415.63284" z="0.0"></viz:position> | |
<viz:color r="138" g="199" b="143"></viz:color> | |
</node> | |
<node id="udhistory" label="udhistory"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.287339E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="271"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0925245"></viz:size> | |
<viz:position x="-234.6977" y="556.8996" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="benwbrum" label="benwbrum"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0097821325"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1923076923"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="23"></attvalue> | |
<attvalue for="degree" value="13"></attvalue> | |
</attvalues> | |
<viz:size value="9.26115"></viz:size> | |
<viz:position x="-233.2201" y="487.73926" z="0.0"></viz:position> | |
<viz:color r="79" g="151" b="80"></viz:color> | |
</node> | |
<node id="keenera" label="keenera"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0109836023"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.25"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="19"></attvalue> | |
<attvalue for="degree" value="8"></attvalue> | |
</attvalues> | |
<viz:size value="9.814365"></viz:size> | |
<viz:position x="-997.96436" y="327.75125" z="0.0"></viz:position> | |
<viz:color r="66" g="140" b="66"></viz:color> | |
</node> | |
<node id="jpkeene" label="jpkeene"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.634331E-4"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="314"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016412"></viz:size> | |
<viz:position x="-56.598206" y="320.8378" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="JDFielder" label="JDFielder"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="365"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1359.7693" y="450.71393" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="dr_heil" label="dr_heil"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0153071692"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1944444444"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="13"></attvalue> | |
<attvalue for="degree" value="9"></attvalue> | |
</attvalues> | |
<viz:size value="11.805145"></viz:size> | |
<viz:position x="-951.38446" y="202.61343" z="0.0"></viz:position> | |
<viz:color r="79" g="150" b="79"></viz:color> | |
</node> | |
<node id="bookdal" label="bookdal"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.667179E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="173"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2021036"></viz:size> | |
<viz:position x="-1444.77" y="-101.50836" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="sramsay" label="sramsay"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.667179E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="174"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2021036"></viz:size> | |
<viz:position x="-1485.8391" y="-102.134094" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="ablerism" label="ablerism"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.446967E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="180"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.191964"></viz:size> | |
<viz:position x="-1472.2051" y="-37.304993" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="rita_vanduinen" label="rita_vanduinen"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.002041132"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3333333333"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="84"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.6968164"></viz:size> | |
<viz:position x="67.82132" y="-114.99457" z="0.0"></viz:position> | |
<viz:color r="50" g="127" b="49"></viz:color> | |
</node> | |
<node id="ASLE_US" label="ASLE_US"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.215739E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="279"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0892277"></viz:size> | |
<viz:position x="78.69097" y="-157.15166" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="RStuhr" label="RStuhr"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0055709357"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="39"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="7.3221097"></viz:size> | |
<viz:position x="-80.60449" y="-126.83783" z="0.0"></viz:position> | |
<viz:color r="20" g="102" b="17"></viz:color> | |
</node> | |
<node id="_nabilk" label="_nabilk"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.535973E-4"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="364"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.011883"></viz:size> | |
<viz:position x="524.3471" y="-241.0813" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="SBanks20" label="SBanks20"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.001107031"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="142"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2667108"></viz:size> | |
<viz:position x="-274.86325" y="412.90045" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="TGBerman" label="TGBerman"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.326444E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="409"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0022354"></viz:size> | |
<viz:position x="-970.62274" y="144.31937" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="CGSaw" label="CGSaw"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.270297E-4"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="187"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1838293"></viz:size> | |
<viz:position x="705.70374" y="-314.92773" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="monicalmercado" label="monicalmercado"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0048697637"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3571428571"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="43"></attvalue> | |
<attvalue for="degree" value="8"></attvalue> | |
</attvalues> | |
<viz:size value="6.999256"></viz:size> | |
<viz:position x="712.39734" y="-246.25092" z="0.0"></viz:position> | |
<viz:color r="47" g="124" b="45"></viz:color> | |
</node> | |
<node id="BarcelonaLab" label="BarcelonaLab"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.460741E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="237"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1005087"></viz:size> | |
<viz:position x="-837.73975" y="441.1459" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="electricarchaeo" label="electricarchaeo"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0018750022"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="88"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.620322"></viz:size> | |
<viz:position x="-1469.4419" y="192.3357" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="nirak" label="nirak"> | |
<attvalues> | |
<attvalue for="pageranks" value="6.37364E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="301"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.050453"></viz:size> | |
<viz:position x="-1090.7068" y="153.37088" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="LNKCodingWomen" label="LNKCodingWomen"> | |
<attvalues> | |
<attvalue for="pageranks" value="6.37364E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="302"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.050453"></viz:size> | |
<viz:position x="-1057.8668" y="120.97244" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="dnolan" label="dnolan"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="366"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1384.2224" y="465.47522" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="alothian" label="alothian"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0076057998"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="29"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="8.259061"></viz:size> | |
<viz:position x="-1390.7175" y="158.90387" z="0.0"></viz:position> | |
<viz:color r="20" g="102" b="17"></viz:color> | |
</node> | |
<node id="NeilFrau" label="NeilFrau"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0015045362"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="103"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.4497414"></viz:size> | |
<viz:position x="-591.8436" y="625.1129" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="pmhswe" label="pmhswe"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.615828E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="176"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1997395"></viz:size> | |
<viz:position x="532.1799" y="679.1206" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="erinblasco" label="erinblasco"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0109267645"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="20"></attvalue> | |
<attvalue for="degree" value="11"></attvalue> | |
</attvalues> | |
<viz:size value="9.788195"></viz:size> | |
<viz:position x="588.26227" y="725.3939" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="archivesnext" label="archivesnext"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0029852713"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="58"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="6.131544"></viz:size> | |
<viz:position x="214.58472" y="432.5829" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="oldweather" label="oldweather"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010355702"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="161"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2338066"></viz:size> | |
<viz:position x="-335.8176" y="633.4288" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="dougdechow" label="dougdechow"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0019775524"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="86"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="5.667541"></viz:size> | |
<viz:position x="-385.80768" y="589.41315" z="0.0"></viz:position> | |
<viz:color r="56" g="132" b="55"></viz:color> | |
</node> | |
<node id="neatline" label="neatline"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012539954"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="120"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.33438"></viz:size> | |
<viz:position x="-430.39047" y="215.86694" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Acuity_Design" label="Acuity_Design"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="343"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1555.2529" y="92.14685" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="twibbleio" label="twibbleio"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.424372E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="245"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.098834"></viz:size> | |
<viz:position x="-83.00637" y="657.8047" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="TheAVClub" label="TheAVClub"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.439747E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="241"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.099542"></viz:size> | |
<viz:position x="-1377.9175" y="428.51398" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="zeynep" label="zeynep"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.35051E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="403"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0033436"></viz:size> | |
<viz:position x="-398.3193" y="192.31534" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="_katiedidnt" label="_katiedidnt"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0040592626"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="46"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="6.626062"></viz:size> | |
<viz:position x="-605.42926" y="-259.45868" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="Chronotope" label="Chronotope"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0013010176"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="117"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.3560314"></viz:size> | |
<viz:position x="-1340.2079" y="137.73059" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="l4ntyrn" label="l4ntyrn"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.599228E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="325"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147953"></viz:size> | |
<viz:position x="188.51404" y="594.47894" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="twitter" label="twitter"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.599228E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="326"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147953"></viz:size> | |
<viz:position x="181.85638" y="626.8054" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="FolgerLibrary" label="FolgerLibrary"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010888022"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="149"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2583175"></viz:size> | |
<viz:position x="68.989426" y="68.25515" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="AnneSarahRubin" label="AnneSarahRubin"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0025344402"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.9"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="69"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="5.9239593"></viz:size> | |
<viz:position x="727.35583" y="15.274048" z="0.0"></viz:position> | |
<viz:color r="5" g="90" b="1"></viz:color> | |
</node> | |
<node id="MelissaRogers17" label="MelissaRogers17"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.006663214"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.5"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="33"></attvalue> | |
<attvalue for="degree" value="8"></attvalue> | |
</attvalues> | |
<viz:size value="7.825048"></viz:size> | |
<viz:position x="-17.416115" y="-158.1608" z="0.0"></viz:position> | |
<viz:color r="29" g="109" b="27"></viz:color> | |
</node> | |
<node id="WMSTstudio" label="WMSTstudio"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0027918841"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.7333333333"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="63"></attvalue> | |
<attvalue for="degree" value="6"></attvalue> | |
</attvalues> | |
<viz:size value="6.042499"></viz:size> | |
<viz:position x="-37.013542" y="-92.98005" z="0.0"></viz:position> | |
<viz:color r="11" g="95" b="8"></viz:color> | |
</node> | |
<node id="jimccasey1" label="jimccasey1"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.568767E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="177"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.197572"></viz:size> | |
<viz:position x="141.17523" y="550.55426" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="theriversideUCC" label="theriversideUCC"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.382409E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="401"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0048122"></viz:size> | |
<viz:position x="-146.80573" y="344.37592" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="schreib100" label="schreib100"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.382409E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="402"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0048122"></viz:size> | |
<viz:position x="-182.76709" y="345.58752" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="DigitalHistUMBC" label="DigitalHistUMBC"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0027696757"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.9"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="64"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="6.0322733"></viz:size> | |
<viz:position x="780.5836" y="49.450928" z="0.0"></viz:position> | |
<viz:color r="5" g="90" b="1"></viz:color> | |
</node> | |
<node id="djp2025" label="djp2025"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0014481643"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="105"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.423785"></viz:size> | |
<viz:position x="-895.3448" y="130.31705" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="adburgosjr" label="adburgosjr"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0029522998"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="59"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="6.1163626"></viz:size> | |
<viz:position x="617.2176" y="826.0456" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="katebeavs" label="katebeavs"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0026567854"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="66"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.9802933"></viz:size> | |
<viz:position x="108.95653" y="-39.042225" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="Elijah_Meeks" label="Elijah_Meeks"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0079741077"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.032967033"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="28"></attvalue> | |
<attvalue for="degree" value="14"></attvalue> | |
</attvalues> | |
<viz:size value="8.428647"></viz:size> | |
<viz:position x="301.10724" y="-195.96594" z="0.0"></viz:position> | |
<viz:color r="147" g="207" b="153"></viz:color> | |
</node> | |
<node id="ProfessMoravec" label="ProfessMoravec"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.513882E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="231"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1029553"></viz:size> | |
<viz:position x="-273.5454" y="638.95734" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="thomasgpadilla" label="thomasgpadilla"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0070769836"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="32"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="8.015568"></viz:size> | |
<viz:position x="135.2103" y="45.888924" z="0.0"></viz:position> | |
<viz:color r="86" g="156" b="88"></viz:color> | |
</node> | |
<node id="DevelopDH" label="DevelopDH"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.303769E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="268"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.093281"></viz:size> | |
<viz:position x="-854.0758" y="-320.75983" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="harikondabolu" label="harikondabolu"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="344"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1569.6025" y="6.168335" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="cljennings" label="cljennings"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.343084E-4"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="260"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0950913"></viz:size> | |
<viz:position x="36.9644" y="-388.17267" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="sleonchnm" label="sleonchnm"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.2779E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="415"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0"></viz:size> | |
<viz:position x="-745.583" y="47.475155" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="amhistorymuseum" label="amhistorymuseum"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0174731163"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1454545455"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="8"></attvalue> | |
<attvalue for="degree" value="11"></attvalue> | |
</attvalues> | |
<viz:size value="12.802454"></viz:size> | |
<viz:position x="-295.82837" y="60.989605" z="0.0"></viz:position> | |
<viz:color r="93" g="162" b="94"></viz:color> | |
</node> | |
<node id="yukonakamura_" label="yukonakamura_"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0017616043"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="96"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.568108"></viz:size> | |
<viz:position x="35.868282" y="67.77055" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Profrehn" label="Profrehn"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0011117683"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="140"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2688923"></viz:size> | |
<viz:position x="-678.0795" y="-268.18176" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="ararebit" label="ararebit"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0073534451"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1904761905"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="31"></attvalue> | |
<attvalue for="degree" value="7"></attvalue> | |
</attvalues> | |
<viz:size value="8.142864"></viz:size> | |
<viz:position x="-793.9294" y="-321.66223" z="0.0"></viz:position> | |
<viz:color r="80" g="151" b="81"></viz:color> | |
</node> | |
<node id="tmcphers" label="tmcphers"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.025975358"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0471014493"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="5"></attvalue> | |
<attvalue for="degree" value="24"></attvalue> | |
</attvalues> | |
<viz:size value="16.7173"></viz:size> | |
<viz:position x="-640.4744" y="-396.72467" z="0.0"></viz:position> | |
<viz:color r="137" g="198" b="141"></viz:color> | |
</node> | |
<node id="ctschroeder" label="ctschroeder"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0013084663"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="116"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.3594613"></viz:size> | |
<viz:position x="-771.8213" y="-399.76575" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="jaheppler" label="jaheppler"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.377476E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="257"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.096675"></viz:size> | |
<viz:position x="-746.8682" y="-362.5462" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="tjowens" label="tjowens"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0027097467"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3333333333"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="65"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="6.004679"></viz:size> | |
<viz:position x="-325.5798" y="519.18463" z="0.0"></viz:position> | |
<viz:color r="50" g="127" b="49"></viz:color> | |
</node> | |
<node id="librarycongress" label="librarycongress"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.144985E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="194"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1780596"></viz:size> | |
<viz:position x="75.83065" y="-62.615593" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="cliotropic" label="cliotropic"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0033204546"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="54"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="6.2858787"></viz:size> | |
<viz:position x="-728.24664" y="-309.2851" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="vac11" label="vac11"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0013617057"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="112"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.3839755"></viz:size> | |
<viz:position x="-740.78235" y="695.9199" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="bobbylsmiley" label="bobbylsmiley"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0022941449"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="78"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.813316"></viz:size> | |
<viz:position x="-58.104263" y="-337.91028" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="mkirschenbaum" label="mkirschenbaum"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0019093243"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="87"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.6361256"></viz:size> | |
<viz:position x="-691.7842" y="674.3129" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="karikraus" label="karikraus"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.001329942"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="115"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.36935"></viz:size> | |
<viz:position x="-735.0072" y="639.3442" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="JaneEvaBaxter" label="JaneEvaBaxter"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.578259E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="339"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.01383"></viz:size> | |
<viz:position x="7.5837936" y="433.67847" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="sabrown07" label="sabrown07"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.652609E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="226"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.109343"></viz:size> | |
<viz:position x="619.14484" y="658.1145" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="subversiveone2" label="subversiveone2"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0116659989"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1428571429"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="18"></attvalue> | |
<attvalue for="degree" value="8"></attvalue> | |
</attvalues> | |
<viz:size value="10.128574"></viz:size> | |
<viz:position x="-418.00586" y="-43.664486" z="0.0"></viz:position> | |
<viz:color r="94" g="162" b="95"></viz:color> | |
</node> | |
<node id="ArtistLibrarian" label="ArtistLibrarian"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0026177381"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3333333333"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="68"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.9623137"></viz:size> | |
<viz:position x="-121.00894" y="25.526047" z="0.0"></viz:position> | |
<viz:color r="50" g="127" b="49"></viz:color> | |
</node> | |
<node id="panethelion" label="panethelion"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.300735E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="269"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.093141"></viz:size> | |
<viz:position x="469.18765" y="576.9216" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="puraconjetura" label="puraconjetura"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.489497E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="379"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0097427"></viz:size> | |
<viz:position x="611.57153" y="510.05215" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="KDImpellizeri" label="KDImpellizeri"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.633534E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="320"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016375"></viz:size> | |
<viz:position x="662.0294" y="732.3803" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="nlm_news" label="nlm_news"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010888022"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="150"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2583175"></viz:size> | |
<viz:position x="58.58852" y="40.044464" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="samplereality" label="samplereality"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.598545E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="333"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147643"></viz:size> | |
<viz:position x="310.47385" y="332.72263" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ushmm" label="ushmm"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.076103E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="198"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1748877"></viz:size> | |
<viz:position x="-36.045254" y="87.59886" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="inkthya" label="inkthya"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.300735E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="270"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.093141"></viz:size> | |
<viz:position x="500.2003" y="603.5719" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="UMBC" label="UMBC"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012540793"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="119"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="5.334419"></viz:size> | |
<viz:position x="765.84814" y="99.32782" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="DDMeringolo" label="DDMeringolo"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.002120856"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.9"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="82"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="5.7335253"></viz:size> | |
<viz:position x="784.38904" y="-3.9181519" z="0.0"></viz:position> | |
<viz:color r="5" g="90" b="1"></viz:color> | |
</node> | |
<node id="chnm" label="chnm"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0049690626"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.1428571429"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="42"></attvalue> | |
<attvalue for="degree" value="15"></attvalue> | |
</attvalues> | |
<viz:size value="7.044978"></viz:size> | |
<viz:position x="683.9458" y="-89.96686" z="0.0"></viz:position> | |
<viz:color r="94" g="162" b="95"></viz:color> | |
</node> | |
<node id="rachellaudan" label="rachellaudan"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.489497E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="380"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0097427"></viz:size> | |
<viz:position x="487.29877" y="492.94864" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="dbpdata" label="dbpdata"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.398915E-4"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="397"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0055723"></viz:size> | |
<viz:position x="21.580553" y="-458.33768" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="HikeOurPlanet" label="HikeOurPlanet"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.164474E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="282"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.086867"></viz:size> | |
<viz:position x="2.7952116" y="71.211105" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="kmdougan" label="kmdougan"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="345"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1531.1976" y="-53.708496" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="MBDesignsVA" label="MBDesignsVA"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.161748E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="284"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0867414"></viz:size> | |
<viz:position x="-307.63995" y="142.53311" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="sarepal" label="sarepal"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0026533298"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="67"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="5.978702"></viz:size> | |
<viz:position x="17.029104" y="-98.952225" z="0.0"></viz:position> | |
<viz:color r="20" g="102" b="17"></viz:color> | |
</node> | |
<node id="reedeth" label="reedeth"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0029499644"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="60"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="6.115287"></viz:size> | |
<viz:position x="-111.005356" y="-374.1194" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="Kelly_Quinn_23" label="Kelly_Quinn_23"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010896967"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="148"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.258729"></viz:size> | |
<viz:position x="-366.59442" y="109.86655" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="p_ovalle" label="p_ovalle"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0014464166"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="106"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.4229803"></viz:size> | |
<viz:position x="-383.83075" y="76.0468" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="bryndiana_jones" label="bryndiana_jones"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012140321"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="132"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.3159795"></viz:size> | |
<viz:position x="-74.67283" y="-176.02304" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="lindabnorris" label="lindabnorris"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.161748E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="285"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0867414"></viz:size> | |
<viz:position x="-345.18274" y="148.95174" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="CuratorLucy" label="CuratorLucy"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.369586E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="258"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0963116"></viz:size> | |
<viz:position x="520.643" y="763.1885" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="publiccurator" label="publiccurator"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.161748E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="286"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0867414"></viz:size> | |
<viz:position x="-334.0611" y="112.87475" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="airandspace" label="airandspace"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.903253E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="207"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.166929"></viz:size> | |
<viz:position x="-48.8126" y="55.88692" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="NUPublicHistory" label="NUPublicHistory"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.35051E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="404"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0033436"></viz:size> | |
<viz:position x="-449.25204" y="240.4678" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="patrick_mj" label="patrick_mj"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0017989878"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="93"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.5853214"></viz:size> | |
<viz:position x="-1466.6428" y="354.7171" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="bradleymnelson" label="bradleymnelson"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.149244E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="193"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1782556"></viz:size> | |
<viz:position x="170.73969" y="531.5074" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="TomCollinsAndCo" label="TomCollinsAndCo"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.230145E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="277"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.089891"></viz:size> | |
<viz:position x="-228.26578" y="389.008" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="jenniferisve" label="jenniferisve"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.013952E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="298"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0799365"></viz:size> | |
<viz:position x="-595.0016" y="107.45444" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="KevinG_Smith" label="KevinG_Smith"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0018239204"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="91"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.5968018"></viz:size> | |
<viz:position x="-361.94482" y="38.19559" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="aunigelles" label="aunigelles"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.001620899"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="100"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.5033207"></viz:size> | |
<viz:position x="-210.36331" y="48.665585" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="caitkear" label="caitkear"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0015105398"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="102"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.452506"></viz:size> | |
<viz:position x="507.83102" y="721.314" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="CRAcademyNPS" label="CRAcademyNPS"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.164474E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="283"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.086867"></viz:size> | |
<viz:position x="13.6545105" y="89.93361" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="PhilofWrite" label="PhilofWrite"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.417385E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="392"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0064225"></viz:size> | |
<viz:position x="-352.10718" y="-77.67342" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Louisedenoon" label="Louisedenoon"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.633534E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="321"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016375"></viz:size> | |
<viz:position x="643.33716" y="770.7005" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="markcheathem" label="markcheathem"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.417385E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="393"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0064225"></viz:size> | |
<viz:position x="-367.69775" y="-106.11462" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="draw8ing" label="draw8ing"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.633534E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="322"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016375"></viz:size> | |
<viz:position x="548.5559" y="789.94617" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="cynthiaway" label="cynthiaway"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.633534E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="323"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016375"></viz:size> | |
<viz:position x="654.49786" y="690.32306" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jcaple" label="jcaple"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.633534E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="324"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016375"></viz:size> | |
<viz:position x="588.49774" y="790.95734" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="amhistoryintern" label="amhistoryintern"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.721969E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="224"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.112537"></viz:size> | |
<viz:position x="-205.87985" y="87.41957" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="Dan_Blick" label="Dan_Blick"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="346"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1539.436" y="-9.9539795" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="twinethreads" label="twinethreads"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.057292E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="199"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.1740217"></viz:size> | |
<viz:position x="-1335.8062" y="83.496765" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="bewmaynes" label="bewmaynes"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.255729E-4"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="188"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1831584"></viz:size> | |
<viz:position x="24.775414" y="-356.99564" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="UMBCHumanities" label="UMBCHumanities"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0016789044"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.9"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="98"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="5.5300293"></viz:size> | |
<viz:position x="714.61096" y="66.871216" z="0.0"></viz:position> | |
<viz:color r="5" g="90" b="1"></viz:color> | |
</node> | |
<node id="MeganPeiser" label="MeganPeiser"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.150069E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="190"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.1782937"></viz:size> | |
<viz:position x="-681.72394" y="140.01299" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="DHCommons" label="DHCommons"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.002261771"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.5"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="80"></attvalue> | |
<attvalue for="degree" value="8"></attvalue> | |
</attvalues> | |
<viz:size value="5.7984095"></viz:size> | |
<viz:position x="-733.195" y="116.44516" z="0.0"></viz:position> | |
<viz:color r="29" g="109" b="27"></viz:color> | |
</node> | |
<node id="KMH_nowinVA" label="KMH_nowinVA"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.001093719"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="145"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="5.2605815"></viz:size> | |
<viz:position x="-703.6227" y="20.77436" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="juliekane99" label="juliekane99"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0059173669"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.5"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="38"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="7.4816236"></viz:size> | |
<viz:position x="-107.76742" y="-316.27835" z="0.0"></viz:position> | |
<viz:color r="29" g="109" b="27"></viz:color> | |
</node> | |
<node id="thelodahl" label="thelodahl"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="347"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1584.7957" y="-16.137268" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="anna_kijas" label="anna_kijas"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0016296602"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="99"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.5073547"></viz:size> | |
<viz:position x="-660.351" y="174.90071" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="gregg_sh" label="gregg_sh"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.150069E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="191"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.1782937"></viz:size> | |
<viz:position x="-705.89575" y="177.8817" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="kwandrews" label="kwandrews"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.634331E-4"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="315"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016412"></viz:size> | |
<viz:position x="37.754467" y="340.5061" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ADHOrg" label="ADHOrg"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.150069E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="192"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.1782937"></viz:size> | |
<viz:position x="-633.6442" y="139.40283" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="HallofFamePrez" label="HallofFamePrez"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.705674E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="308"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0196967"></viz:size> | |
<viz:position x="615.9072" y="870.3881" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="HolocaustMuseum" label="HolocaustMuseum"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.425696E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="390"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0068054"></viz:size> | |
<viz:position x="-240.955" y="12.674613" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="EmoryCDS" label="EmoryCDS"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.664758E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="312"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0178127"></viz:size> | |
<viz:position x="41.820446" y="-144.36926" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="DigitCurator" label="DigitCurator"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.460741E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="238"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1005087"></viz:size> | |
<viz:position x="-925.1431" y="475.3347" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="purplekimchi" label="purplekimchi"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.405804E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="182"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1900687"></viz:size> | |
<viz:position x="-541.01373" y="-167.51978" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="digisam_ra" label="digisam_ra"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.439603E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="388"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.007446"></viz:size> | |
<viz:position x="-208.7221" y="724.0774" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Gephi" label="Gephi"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.419687E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="181"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.190708"></viz:size> | |
<viz:position x="300.82535" y="-277.6728" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="DaveMazella" label="DaveMazella"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.336861E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="262"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.094805"></viz:size> | |
<viz:position x="-718.15497" y="-464.38416" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="huber_al" label="huber_al"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.336861E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="263"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.094805"></viz:size> | |
<viz:position x="-607.56934" y="-499.7011" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="toughLoveforx" label="toughLoveforx"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="367"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1306.908" y="407.5122" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Letters1916" label="Letters1916"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.175655E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="281"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.087382"></viz:size> | |
<viz:position x="-280.09854" y="668.94775" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="googledownunder" label="googledownunder"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.398915E-4"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="398"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0055723"></viz:size> | |
<viz:position x="-13.112371" y="-480.9079" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Bartography" label="Bartography"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.471272E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="236"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1009936"></viz:size> | |
<viz:position x="-1494.8982" y="227.44025" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="jillydreadful" label="jillydreadful"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="368"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1284.8336" y="427.90192" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jeriwieringa" label="jeriwieringa"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010692417"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="154"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2493105"></viz:size> | |
<viz:position x="-420.5455" y="25.102032" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="GhostProf" label="GhostProf"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="348"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1449.0708" y="-57.838623" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="sharon_howard" label="sharon_howard"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.287339E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="272"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0925245"></viz:size> | |
<viz:position x="-278.07605" y="546.4397" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="gmcharlt" label="gmcharlt"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.634331E-4"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="316"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016412"></viz:size> | |
<viz:position x="35.857655" y="226.4353" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="asgoodson" label="asgoodson"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.634331E-4"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="317"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016412"></viz:size> | |
<viz:position x="62.929348" y="254.54398" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="DHChipotle" label="DHChipotle"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0024780999"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="71"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.898018"></viz:size> | |
<viz:position x="43.014614" y="108.92871" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="archivesgeek" label="archivesgeek"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.006287243"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="35"></attvalue> | |
<attvalue for="degree" value="6"></attvalue> | |
</attvalues> | |
<viz:size value="7.6519327"></viz:size> | |
<viz:position x="96.25757" y="127.60409" z="0.0"></viz:position> | |
<viz:color r="125" g="188" b="129"></viz:color> | |
</node> | |
<node id="jeffreymoro" label="jeffreymoro"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.404003E-4"></attvalue> | |
<attvalue for="modularity_class" value="10"></attvalue> | |
<attvalue for="componentnumber" value="13"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="255"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.097896"></viz:size> | |
<viz:position x="-292.28244" y="-290.15805" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="miriamkp" label="miriamkp"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0028990496"></attvalue> | |
<attvalue for="modularity_class" value="10"></attvalue> | |
<attvalue for="componentnumber" value="13"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="62"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="6.0918436"></viz:size> | |
<viz:position x="-263.20422" y="-329.40698" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="celeste_sharpe" label="celeste_sharpe"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.404003E-4"></attvalue> | |
<attvalue for="modularity_class" value="10"></attvalue> | |
<attvalue for="componentnumber" value="13"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="256"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.097896"></viz:size> | |
<viz:position x="-228.44955" y="-291.03207" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="FarmersMarketUM" label="FarmersMarketUM"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.786629E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="305"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0234246"></viz:size> | |
<viz:position x="-163.09589" y="790.68225" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="bayerc" label="bayerc"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012990142"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.5"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="118"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="5.355109"></viz:size> | |
<viz:position x="-576.10333" y="292.99646" z="0.0"></viz:position> | |
<viz:color r="29" g="109" b="27"></viz:color> | |
</node> | |
<node id="ryancordell" label="ryancordell"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0011480152"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="137"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.285582"></viz:size> | |
<viz:position x="-580.06915" y="208.93927" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="EMDillon" label="EMDillon"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.110915E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="215"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.130446"></viz:size> | |
<viz:position x="-542.7408" y="319.7256" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="NatashaBarret18" label="NatashaBarret18"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.287339E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="273"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0925245"></viz:size> | |
<viz:position x="-275.1245" y="582.331" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="tehgortlib" label="tehgortlib"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.401579E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="395"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.005695"></viz:size> | |
<viz:position x="-650.71735" y="-99.3061" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="profwernimont" label="profwernimont"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.003847662"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="49"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="6.5286307"></viz:size> | |
<viz:position x="-459.41803" y="-360.41125" z="0.0"></viz:position> | |
<viz:color r="20" g="102" b="17"></viz:color> | |
</node> | |
<node id="mkgold" label="mkgold"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.473037E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="384"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.008985"></viz:size> | |
<viz:position x="-188.23013" y="-100.34131" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="raffazizzi" label="raffazizzi"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010804136"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="152"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2544546"></viz:size> | |
<viz:position x="67.74111" y="-25.870274" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="nealstimler" label="nealstimler"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.01353E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="203"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1720066"></viz:size> | |
<viz:position x="-21.35813" y="65.96821" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="philomela_twine" label="philomela_twine"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="369"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1468.4662" y="428.52362" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="sendelbach" label="sendelbach"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.092015E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="293"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.083531"></viz:size> | |
<viz:position x="42.368877" y="-58.215317" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="_fionamor" label="_fionamor"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.1244E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="195"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1771116"></viz:size> | |
<viz:position x="518.78613" y="478.1921" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="EuropeanaTech" label="EuropeanaTech"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.460741E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="239"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1005087"></viz:size> | |
<viz:position x="-948.4494" y="447.7957" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="KusturieM" label="KusturieM"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.263408E-4"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="275"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0914226"></viz:size> | |
<viz:position x="-648.7949" y="502.7339" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="valentinec89" label="valentinec89"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0011307024"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="138"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2776103"></viz:size> | |
<viz:position x="-888.2201" y="459.1285" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="coblezc" label="coblezc"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.001798881"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="94"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.5852723"></viz:size> | |
<viz:position x="-623.84265" y="652.96313" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="opba" label="opba"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.708354E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="307"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.01982"></viz:size> | |
<viz:position x="-378.85513" y="481.94092" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="JianQin" label="JianQin"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.476653E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="383"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0091515"></viz:size> | |
<viz:position x="-816.98553" y="412.02896" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="shoemakr" label="shoemakr"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.650036E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="175"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2013144"></viz:size> | |
<viz:position x="-1231.681" y="353.09515" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="TheBoardAndBrew" label="TheBoardAndBrew"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.343084E-4"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="261"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0950913"></viz:size> | |
<viz:position x="37.89117" y="-423.18628" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ArchivesGirl" label="ArchivesGirl"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.598545E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="334"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147643"></viz:size> | |
<viz:position x="164.22061" y="356.19342" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="AnnamFerri" label="AnnamFerri"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.520061E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="229"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.10324"></viz:size> | |
<viz:position x="294.45294" y="294.41156" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="BoardsandBrews" label="BoardsandBrews"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0013755747"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="111"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.3903613"></viz:size> | |
<viz:position x="-1222.3386" y="301.0442" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="tassietheg" label="tassietheg"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0021187426"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="83"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.732552"></viz:size> | |
<viz:position x="-1402.8967" y="513.0644" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="SNAP_Roundtable" label="SNAP_Roundtable"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.598545E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="335"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147643"></viz:size> | |
<viz:position x="302.09164" y="377.84982" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="stephestellar" label="stephestellar"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.709435E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="172"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2040496"></viz:size> | |
<viz:position x="146.57411" y="109.912994" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="HancockNiki" label="HancockNiki"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.278382E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="414"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0000224"></viz:size> | |
<viz:position x="-138.55795" y="-16.909958" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="trentmkays" label="trentmkays"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="349"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1566.2062" y="61.119995" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="mcclan" label="mcclan"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="350"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1590.2433" y="78.92871" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="HughRundle" label="HughRundle"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.439603E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="389"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.007446"></viz:size> | |
<viz:position x="-241.69449" y="724.6332" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Wikisteff" label="Wikisteff"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.460741E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="240"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1005087"></viz:size> | |
<viz:position x="-850.04504" y="472.32785" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jenniferaviva" label="jenniferaviva"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.285886E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="186"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1845474"></viz:size> | |
<viz:position x="-887.35547" y="492.63205" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="magpie" label="magpie"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0011097126"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="141"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2679453"></viz:size> | |
<viz:position x="-826.5106" y="332.64066" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="AccessibleFu" label="AccessibleFu"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="351"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1544.5642" y="126.00598" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="NEH_ODH" label="NEH_ODH"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012147818"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.8333333333"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="131"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="5.316324"></viz:size> | |
<viz:position x="-514.06915" y="-353.1258" z="0.0"></viz:position> | |
<viz:color r="7" g="91" b="3"></viz:color> | |
</node> | |
<node id="Zoe_LeBlanc" label="Zoe_LeBlanc"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0022312933"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="81"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.784376"></viz:size> | |
<viz:position x="-81.217865" y="41.027054" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="UCLibraries" label="UCLibraries"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.598545E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="336"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147643"></viz:size> | |
<viz:position x="267.31274" y="409.36636" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="needalibraryjob" label="needalibraryjob"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.520061E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="230"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.10324"></viz:size> | |
<viz:position x="259.9476" y="277.71964" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="DOTS_UMD" label="DOTS_UMD"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.637255E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="313"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0165462"></viz:size> | |
<viz:position x="-123.93207" y="76.14166" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="WetheHumanities" label="WetheHumanities"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.439747E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="242"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.099542"></viz:size> | |
<viz:position x="-1439.2242" y="408.94843" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="irishchick60" label="irishchick60"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.305635E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="413"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.001277"></viz:size> | |
<viz:position x="-114.98118" y="-168.34674" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jarahmoesch" label="jarahmoesch"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.001057737"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="159"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2440133"></viz:size> | |
<viz:position x="-635.74945" y="-299.7057" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="morbidflight" label="morbidflight"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.263408E-4"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="276"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0914226"></viz:size> | |
<viz:position x="-684.60925" y="510.1903" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="lynnemthomas" label="lynnemthomas"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012423783"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="123"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.329031"></viz:size> | |
<viz:position x="-714.45557" y="538.9522" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="RBMSinfo" label="RBMSinfo"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012423783"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="124"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.329031"></viz:size> | |
<viz:position x="-564.4376" y="599.5847" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="captain_maybe" label="captain_maybe"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.598545E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="337"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147643"></viz:size> | |
<viz:position x="181.2003" y="389.16806" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="clioweb" label="clioweb"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.031203E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="201"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1728206"></viz:size> | |
<viz:position x="617.4539" y="551.54596" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="wdeal" label="wdeal"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.03007E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="202"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.172768"></viz:size> | |
<viz:position x="-402.99005" y="-111.95516" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="save4use" label="save4use"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010912359"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="147"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.259438"></viz:size> | |
<viz:position x="-599.0781" y="542.7219" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="_cfwillett" label="_cfwillett"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.839523E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="211"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1639943"></viz:size> | |
<viz:position x="-467.6735" y="281.50992" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="abschreiber" label="abschreiber"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.882789E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="210"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1659865"></viz:size> | |
<viz:position x="-821.1354" y="275.56326" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="thinkingskillsc" label="thinkingskillsc"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="352"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1393.0044" y="-6.279724" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="mollyhardy" label="mollyhardy"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.927864E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="206"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.168062"></viz:size> | |
<viz:position x="-1578.9913" y="112.26257" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="nowviskie" label="nowviskie"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.137631E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="288"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.085631"></viz:size> | |
<viz:position x="-567.8238" y="-8.204441" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="krisshaffer" label="krisshaffer"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010978719"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="143"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2624936"></viz:size> | |
<viz:position x="-66.38918" y="275.6769" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="skrug" label="skrug"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.599228E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="327"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147953"></viz:size> | |
<viz:position x="182.9679" y="561.145" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="AnneFreeland" label="AnneFreeland"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.729025E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="306"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.020772"></viz:size> | |
<viz:position x="189.60646" y="470.26788" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="NortheasternATS" label="NortheasternATS"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.35051E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="405"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0033436"></viz:size> | |
<viz:position x="-391.58176" y="167.49661" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="TheFireTracker2" label="TheFireTracker2"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.398915E-4"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="399"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0055723"></viz:size> | |
<viz:position x="-5.885199" y="-344.12592" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="SVSTEM" label="SVSTEM"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.941848E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="166"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.214751"></viz:size> | |
<viz:position x="-469.67987" y="606.16235" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="johnolilly" label="johnolilly"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012444203"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="121"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.3299713"></viz:size> | |
<viz:position x="-471.10345" y="565.34406" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="cmusv_dmi" label="cmusv_dmi"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.183371E-4"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="280"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.087737"></viz:size> | |
<viz:position x="-106.520355" y="-427.7471" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="SF_BayArea_ACM" label="SF_BayArea_ACM"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.398915E-4"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="400"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0055723"></viz:size> | |
<viz:position x="-53.57665" y="-482.49078" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="powerpoint" label="powerpoint"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.599228E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="328"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147953"></viz:size> | |
<viz:position x="153.69873" y="618.00464" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="reese_terry" label="reese_terry"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.634331E-4"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="318"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016412"></viz:size> | |
<viz:position x="-2.47247" y="217.35054" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ranti" label="ranti"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="353"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1370.8884" y="15.4552" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="nmdnet" label="nmdnet"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.424372E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="246"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.098834"></viz:size> | |
<viz:position x="-49.398933" y="681.0226" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="hannahlj007" label="hannahlj007"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.478155E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="235"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1013103"></viz:size> | |
<viz:position x="341.87134" y="-252.02635" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jo_frankie" label="jo_frankie"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.476274E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="178"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1933136"></viz:size> | |
<viz:position x="523.12726" y="430.71664" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="yale_dh" label="yale_dh"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.380653E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="183"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1889105"></viz:size> | |
<viz:position x="510.0052" y="386.04303" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="LibSkrat" label="LibSkrat"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.401579E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="396"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.005695"></viz:size> | |
<viz:position x="-686.13727" y="-79.85347" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Mark_A_H" label="Mark_A_H"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.472772E-4"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="179"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1931524"></viz:size> | |
<viz:position x="-115.838394" y="-265.75677" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="BonifaceVIII" label="BonifaceVIII"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.050702E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="296"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0816283"></viz:size> | |
<viz:position x="-1055.7349" y="373.5554" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="meribecks" label="meribecks"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.083656E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="295"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0831456"></viz:size> | |
<viz:position x="-467.69357" y="9.251199" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="nypl_labs" label="nypl_labs"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.529676E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="227"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1036825"></viz:size> | |
<viz:position x="-444.9602" y="-220.59637" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Hadro" label="Hadro"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.599228E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="329"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147953"></viz:size> | |
<viz:position x="142.05212" y="515.70166" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="riordan" label="riordan"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.599228E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="330"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147953"></viz:size> | |
<viz:position x="159.0307" y="583.3977" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="mgiraldo" label="mgiraldo"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.599228E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="331"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147953"></viz:size> | |
<viz:position x="132.89838" y="666.3394" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="gbl" label="gbl"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="370"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1493.4661" y="405.4145" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ernestopriego" label="ernestopriego"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.473037E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="385"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.008985"></viz:size> | |
<viz:position x="-156.09206" y="-159.31271" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="RickLiebling" label="RickLiebling"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.599228E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="332"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147953"></viz:size> | |
<viz:position x="162.02911" y="653.85706" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="OpenRepository" label="OpenRepository"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0018569046"></attvalue> | |
<attvalue for="modularity_class" value="14"></attvalue> | |
<attvalue for="componentnumber" value="14"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="89"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.611989"></viz:size> | |
<viz:position x="906.3739" y="895.1592" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="OA_Button" label="OA_Button"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0035151066"></attvalue> | |
<attvalue for="modularity_class" value="14"></attvalue> | |
<attvalue for="componentnumber" value="14"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="52"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="6.375506"></viz:size> | |
<viz:position x="893.3105" y="940.4887" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="OpenAxes" label="OpenAxes"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0018569046"></attvalue> | |
<attvalue for="modularity_class" value="14"></attvalue> | |
<attvalue for="componentnumber" value="14"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="90"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.611989"></viz:size> | |
<viz:position x="847.3891" y="930.6808" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="GTCPlus" label="GTCPlus"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010847916"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="151"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2564707"></viz:size> | |
<viz:position x="-628.4448" y="-475.3504" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="SHHHenry" label="SHHHenry"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0013759033"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="110"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.3905125"></viz:size> | |
<viz:position x="-54.235275" y="226.68758" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="UMDLibraries" label="UMDLibraries"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.51285E-4"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="232"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.102908"></viz:size> | |
<viz:position x="-73.996605" y="187.84283" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="nabsiddiqui" label="nabsiddiqui"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.326444E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="410"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0022354"></viz:size> | |
<viz:position x="-892.36005" y="177.59903" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="_why" label="_why"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.098083E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="197"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1759"></viz:size> | |
<viz:position x="556.54126" y="471.56152" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="datadryad" label="datadryad"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.688737E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="309"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.018917"></viz:size> | |
<viz:position x="173.29848" y="75.13126" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="KLeuner" label="KLeuner"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.121682E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="289"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0848966"></viz:size> | |
<viz:position x="-561.4355" y="-459.2953" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jsantley" label="jsantley"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010942281"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="144"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2608156"></viz:size> | |
<viz:position x="218.32611" y="-277.40555" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="scott_bot" label="scott_bot"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.413091E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="212"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1443596"></viz:size> | |
<viz:position x="202.84163" y="-328.41867" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="mbrit" label="mbrit"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="371"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1498.8291" y="368.9831" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="bwittgren" label="bwittgren"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012353672"></attvalue> | |
<attvalue for="modularity_class" value="15"></attvalue> | |
<attvalue for="componentnumber" value="15"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="126"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.325803"></viz:size> | |
<viz:position x="359.59366" y="107.45619" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="johanoomen" label="johanoomen"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0061687164"></attvalue> | |
<attvalue for="modularity_class" value="15"></attvalue> | |
<attvalue for="componentnumber" value="15"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="36"></attvalue> | |
<attvalue for="degree" value="6"></attvalue> | |
</attvalues> | |
<viz:size value="7.5973573"></viz:size> | |
<viz:position x="414.73557" y="137.76128" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="TranscriBentham" label="TranscriBentham"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0011567973"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="135"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2896256"></viz:size> | |
<viz:position x="107.072" y="489.8766" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="Nsousanis" label="Nsousanis"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.788323E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="221"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.115592"></viz:size> | |
<viz:position x="-932.77893" y="116.16666" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="yeskatydid" label="yeskatydid"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.669903E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="310"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0180497"></viz:size> | |
<viz:position x="60.712357" y="164.00664" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="TheOneUmbrella" label="TheOneUmbrella"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.984065E-4"></attvalue> | |
<attvalue for="modularity_class" value="15"></attvalue> | |
<attvalue for="componentnumber" value="15"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="216"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.124605"></viz:size> | |
<viz:position x="404.1241" y="79.1646" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="MrGerry" label="MrGerry"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="354"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1556.7799" y="-34.6333" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="rgwakeman" label="rgwakeman"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.669903E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="311"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0180497"></viz:size> | |
<viz:position x="105.94862" y="177.25804" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="CinziaPG" label="CinziaPG"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012438973"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="122"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.3297305"></viz:size> | |
<viz:position x="1.2040482" y="810.6991" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="Crewninerlieber" label="Crewninerlieber"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0024096386"></attvalue> | |
<attvalue for="modularity_class" value="16"></attvalue> | |
<attvalue for="componentnumber" value="16"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="72"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.8664947"></viz:size> | |
<viz:position x="925.11316" y="735.57996" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="PapetheGreat" label="PapetheGreat"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0024096386"></attvalue> | |
<attvalue for="modularity_class" value="16"></attvalue> | |
<attvalue for="componentnumber" value="16"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="73"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.8664947"></viz:size> | |
<viz:position x="884.67944" y="726.7119" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="MiaZamoraPhD" label="MiaZamoraPhD"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.938396E-4"></attvalue> | |
<attvalue for="modularity_class" value="18"></attvalue> | |
<attvalue for="componentnumber" value="17"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="205"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.168547"></viz:size> | |
<viz:position x="-1154.1023" y="-54.145203" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ProfHacker" label="ProfHacker"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0024893441"></attvalue> | |
<attvalue for="modularity_class" value="18"></attvalue> | |
<attvalue for="componentnumber" value="17"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.3333333333"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="70"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.903195"></viz:size> | |
<viz:position x="-1133.6375" y="-99.26996" z="0.0"></viz:position> | |
<viz:color r="50" g="127" b="49"></viz:color> | |
</node> | |
<node id="kmapesy" label="kmapesy"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0038364788"></attvalue> | |
<attvalue for="modularity_class" value="17"></attvalue> | |
<attvalue for="componentnumber" value="18"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="50"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="6.5234814"></viz:size> | |
<viz:position x="604.9331" y="164.56233" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="mitchplaney" label="mitchplaney"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.962477E-4"></attvalue> | |
<attvalue for="modularity_class" value="17"></attvalue> | |
<attvalue for="componentnumber" value="18"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="219"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.123611"></viz:size> | |
<viz:position x="560.6368" y="163.08073" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ChayaGarbarini" label="ChayaGarbarini"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.35051E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="406"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0033436"></viz:size> | |
<viz:position x="-398.66556" y="137.04384" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="mchris4duke" label="mchris4duke"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.354665E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="259"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0956244"></viz:size> | |
<viz:position x="-564.752" y="-309.34998" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="cballard285" label="cballard285"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010608817"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="158"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2454615"></viz:size> | |
<viz:position x="-685.7672" y="-466.9037" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="adri_bs4" label="adri_bs4"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.865622E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="303"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0270615"></viz:size> | |
<viz:position x="-1414.3245" y="566.21857" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="footnotesrising" label="footnotesrising"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.489497E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="381"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0097427"></viz:size> | |
<viz:position x="591.6693" y="478.09836" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Ed_Baptist" label="Ed_Baptist"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.097762E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="292"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0837955"></viz:size> | |
<viz:position x="-661.5074" y="-489.39874" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="LauraLeibman" label="LauraLeibman"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.035308E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="200"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1730094"></viz:size> | |
<viz:position x="455.98547" y="508.78952" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="l_rials" label="l_rials"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.544907E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="359"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0122943"></viz:size> | |
<viz:position x="-424.6908" y="-246.17694" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="amwhisnant" label="amwhisnant"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.828624E-4"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="167"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2095375"></viz:size> | |
<viz:position x="737.44653" y="-175.13306" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="ebonymagnus" label="ebonymagnus"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012310496"></attvalue> | |
<attvalue for="modularity_class" value="17"></attvalue> | |
<attvalue for="componentnumber" value="18"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="129"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.323815"></viz:size> | |
<viz:position x="619.5532" y="208.01515" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jasonrhody" label="jasonrhody"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0013502693"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="113"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="5.3787093"></viz:size> | |
<viz:position x="-480.54858" y="-421.9668" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="mukurtu" label="mukurtu"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.407611E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="213"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1441073"></viz:size> | |
<viz:position x="-415.81732" y="-410.94165" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="justinbhorton" label="justinbhorton"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.489497E-4"></attvalue> | |
<attvalue for="modularity_class" value="5"></attvalue> | |
<attvalue for="componentnumber" value="7"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="382"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0097427"></viz:size> | |
<viz:position x="470.72238" y="540.74817" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="PVAMULibrary" label="PVAMULibrary"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.544907E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="360"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0122943"></viz:size> | |
<viz:position x="-474.01245" y="-186.7857" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="NEarchivists" label="NEarchivists"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.35051E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="407"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0033436"></viz:size> | |
<viz:position x="-401.1885" y="220.3292" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="sierraeckert" label="sierraeckert"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010754484"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="153"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2521687"></viz:size> | |
<viz:position x="-555.76404" y="-425.24792" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Bookcharmer" label="Bookcharmer"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.119908E-4"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="290"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.084815"></viz:size> | |
<viz:position x="-613.5387" y="505.1625" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="TextileHive" label="TextileHive"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.119908E-4"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="291"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.084815"></viz:size> | |
<viz:position x="-573.4385" y="519.48303" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="FemTechNet" label="FemTechNet"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010651052"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="155"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.247406"></viz:size> | |
<viz:position x="-1430.9121" y="252.19452" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="lostlibrarian06" label="lostlibrarian06"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0023219318"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="76"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.8261104"></viz:size> | |
<viz:position x="-648.01025" y="-537.7364" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="JedidahIslerPhD" label="JedidahIslerPhD"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.544907E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="361"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0122943"></viz:size> | |
<viz:position x="-431.9157" y="-191.66101" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="adr" label="adr"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.160269E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="287"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0866733"></viz:size> | |
<viz:position x="-720.2315" y="-428.05078" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="schlabetsy" label="schlabetsy"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.807393E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="304"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0243807"></viz:size> | |
<viz:position x="-641.04645" y="-585.2291" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="shepkeegs" label="shepkeegs"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.227143E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="278"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0897527"></viz:size> | |
<viz:position x="-701.5496" y="-347.03424" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="anvcscalar" label="anvcscalar"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0014435867"></attvalue> | |
<attvalue for="modularity_class" value="13"></attvalue> | |
<attvalue for="componentnumber" value="12"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="107"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.4216776"></viz:size> | |
<viz:position x="-89.43232" y="-464.00656" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="annaeveryday" label="annaeveryday"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.544907E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="362"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0122943"></viz:size> | |
<viz:position x="-500.5617" y="-157.66653" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="lissabrennan" label="lissabrennan"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.544907E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="363"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0122943"></viz:size> | |
<viz:position x="-459.49426" y="-160.58969" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="edsu" label="edsu"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.479661E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="234"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.10138"></viz:size> | |
<viz:position x="-587.18604" y="-474.65308" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="UVicMakerLab" label="UVicMakerLab"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="355"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1497.6936" y="-58.117126" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="AVPreserve" label="AVPreserve"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.321411E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="185"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.186183"></viz:size> | |
<viz:position x="194.58113" y="287.65756" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="shawndearn" label="shawndearn"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.439747E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="243"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.099542"></viz:size> | |
<viz:position x="-1487.2239" y="325.84247" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="TED_TALKS" label="TED_TALKS"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0017881006"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.4"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="95"></attvalue> | |
<attvalue for="degree" value="5"></attvalue> | |
</attvalues> | |
<viz:size value="5.5803084"></viz:size> | |
<viz:position x="-65.15449" y="818.3435" z="0.0"></viz:position> | |
<viz:color r="41" g="119" b="39"></viz:color> | |
</node> | |
<node id="dradambanks" label="dradambanks"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="372"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1309.9457" y="446.2173" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ljvanwingerden" label="ljvanwingerden"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="356"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1385.488" y="-35.245728" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="spgreenhalgh" label="spgreenhalgh"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="373"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1443.4736" y="445.8216" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="amelish" label="amelish"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.107165E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="196"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.176318"></viz:size> | |
<viz:position x="-1587.8698" y="35.5932" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="omeka" label="omeka"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.35051E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="408"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0033436"></viz:size> | |
<viz:position x="-482.241" y="238.70561" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="GA_Archivists" label="GA_Archivists"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.725347E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="223"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1126924"></viz:size> | |
<viz:position x="147.01385" y="150.88792" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Dbfuturist42" label="Dbfuturist42"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="374"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1335.7257" y="464.08502" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Francois_Ronan" label="Francois_Ronan"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="375"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1281.5809" y="371.4693" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Greene_DM" label="Greene_DM"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.424216E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="391"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.006737"></viz:size> | |
<viz:position x="-558.877" y="-384.1623" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="lizlosh" label="lizlosh"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0013798875"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="108"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.3923473"></viz:size> | |
<viz:position x="-335.9205" y="249.31998" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="profjuliette" label="profjuliette"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0013798875"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="109"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.3923473"></viz:size> | |
<viz:position x="-401.25937" y="306.22495" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="avaarndt" label="avaarndt"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0018160346"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="92"></attvalue> | |
<attvalue for="degree" value="4"></attvalue> | |
</attvalues> | |
<viz:size value="5.5931706"></viz:size> | |
<viz:position x="-358.01456" y="290.3863" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="trogool" label="trogool"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.634331E-4"></attvalue> | |
<attvalue for="modularity_class" value="0"></attvalue> | |
<attvalue for="componentnumber" value="2"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="319"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.016412"></viz:size> | |
<viz:position x="-13.633099" y="350.90698" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="DanBlackaby" label="DanBlackaby"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012386299"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="125"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.3273053"></viz:size> | |
<viz:position x="-320.19742" y="325.7" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="mafersasa69" label="mafersasa69"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.236899E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="189"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1822915"></viz:size> | |
<viz:position x="203.74187" y="209.00218" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="gmecagni" label="gmecagni"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010552853"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="160"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2428846"></viz:size> | |
<viz:position x="-502.13257" y="25.045397" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="FranckJULIEN" label="FranckJULIEN"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.893163E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="208"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1664643"></viz:size> | |
<viz:position x="5.33181" y="847.9988" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="UVicHumanities" label="UVicHumanities"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="357"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1512.978" y="-29.412537" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="robincamille" label="robincamille"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.022136E-4"></attvalue> | |
<attvalue for="modularity_class" value="3"></attvalue> | |
<attvalue for="componentnumber" value="6"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="297"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.080313"></viz:size> | |
<viz:position x="-569.4785" y="565.40436" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="erinmaochu" label="erinmaochu"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.893163E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="209"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1664643"></viz:size> | |
<viz:position x="-35.841835" y="857.1749" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="brettbobley" label="brettbobley"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0022672662"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.5333333333"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="79"></attvalue> | |
<attvalue for="degree" value="6"></attvalue> | |
</attvalues> | |
<viz:size value="5.8009396"></viz:size> | |
<viz:position x="540.8589" y="-83.43555" z="0.0"></viz:position> | |
<viz:color r="26" g="107" b="23"></viz:color> | |
</node> | |
<node id="goldsminkle" label="goldsminkle"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.349031E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="184"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.1874547"></viz:size> | |
<viz:position x="90.92272" y="40.004704" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="emilyrnlds" label="emilyrnlds"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.520976E-4"></attvalue> | |
<attvalue for="modularity_class" value="9"></attvalue> | |
<attvalue for="componentnumber" value="11"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="228"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.103282"></viz:size> | |
<viz:position x="-832.9888" y="-270.9007" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="HistStagville" label="HistStagville"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.578259E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="340"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.01383"></viz:size> | |
<viz:position x="67.64132" y="446.6211" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="StewartVarner" label="StewartVarner"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.578259E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="341"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.01383"></viz:size> | |
<viz:position x="36.95739" y="437.64526" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="dennisRamirez" label="dennisRamirez"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.324469E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="264"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.094234"></viz:size> | |
<viz:position x="-1273.5143" y="280.42944" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="dianadepasquale" label="dianadepasquale"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012121412"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="133"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.315109"></viz:size> | |
<viz:position x="-630.90356" y="209.96674" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="chronicle" label="chronicle"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.92631E-4"></attvalue> | |
<attvalue for="modularity_class" value="1"></attvalue> | |
<attvalue for="componentnumber" value="4"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="220"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.121946"></viz:size> | |
<viz:position x="-604.8399" y="247.52644" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="EpistolaryBrown" label="EpistolaryBrown"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0017009266"></attvalue> | |
<attvalue for="modularity_class" value="10"></attvalue> | |
<attvalue for="componentnumber" value="13"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="97"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.5401692"></viz:size> | |
<viz:position x="-277.8857" y="-385.17004" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="CarlSHess" label="CarlSHess"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.439747E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="244"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.099542"></viz:size> | |
<viz:position x="-1411.8126" y="427.81726" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="RachelDeblinger" label="RachelDeblinger"> | |
<attvalues> | |
<attvalue for="pageranks" value="6.506033E-4"></attvalue> | |
<attvalue for="modularity_class" value="10"></attvalue> | |
<attvalue for="componentnumber" value="13"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="299"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.056549"></viz:size> | |
<viz:position x="-257.17426" y="-424.2105" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="briancroxall" label="briancroxall"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.324469E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="265"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.094234"></viz:size> | |
<viz:position x="-1302.0881" y="252.12244" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="djchan08" label="djchan08"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="376"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1335.4594" y="427.79236" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="ModernLearners" label="ModernLearners"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="377"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1414.9518" y="458.57196" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jcburgess25" label="jcburgess25"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.828624E-4"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="168"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2095375"></viz:size> | |
<viz:position x="642.6311" y="-256.26038" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="lubar" label="lubar"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.828624E-4"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="169"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2095375"></viz:size> | |
<viz:position x="657.82227" y="-165.30267" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="GreenfieldHWE" label="GreenfieldHWE"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.828624E-4"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="170"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2095375"></viz:size> | |
<viz:position x="658.91345" y="-212.97223" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="mdfoodcoop" label="mdfoodcoop"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.558628E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="358"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.012926"></viz:size> | |
<viz:position x="-1423.6975" y="-26.616272" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jotis13" label="jotis13"> | |
<attvalues> | |
<attvalue for="pageranks" value="9.828624E-4"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="171"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2095375"></viz:size> | |
<viz:position x="696.3237" y="-185.94067" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="roopikarisam" label="roopikarisam"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.324469E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="266"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.094234"></viz:size> | |
<viz:position x="-1245.8474" y="253.94049" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="DominiqueVanpee" label="DominiqueVanpee"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010167945"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="162"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2251616"></viz:size> | |
<viz:position x="526.65955" y="-141.41748" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="DHandLib" label="DHandLib"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010167945"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="163"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2251616"></viz:size> | |
<viz:position x="571.8988" y="-128.75848" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="DM2Europeana" label="DM2Europeana"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.984065E-4"></attvalue> | |
<attvalue for="modularity_class" value="15"></attvalue> | |
<attvalue for="componentnumber" value="15"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="217"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.124605"></viz:size> | |
<viz:position x="463.05643" y="167.65637" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="gillesduffau" label="gillesduffau"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012353672"></attvalue> | |
<attvalue for="modularity_class" value="15"></attvalue> | |
<attvalue for="componentnumber" value="15"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="127"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.325803"></viz:size> | |
<viz:position x="460.1859" y="98.42725" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="mcn_consulting" label="mcn_consulting"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.984065E-4"></attvalue> | |
<attvalue for="modularity_class" value="15"></attvalue> | |
<attvalue for="componentnumber" value="15"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="218"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.124605"></viz:size> | |
<viz:position x="402.94324" y="195.02777" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="eCreativeEU" label="eCreativeEU"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012353672"></attvalue> | |
<attvalue for="modularity_class" value="15"></attvalue> | |
<attvalue for="componentnumber" value="15"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="128"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.325803"></viz:size> | |
<viz:position x="356.2982" y="159.86287" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="jmcclurken" label="jmcclurken"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010167945"></attvalue> | |
<attvalue for="modularity_class" value="12"></attvalue> | |
<attvalue for="componentnumber" value="5"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.6666666667"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="164"></attvalue> | |
<attvalue for="degree" value="3"></attvalue> | |
</attvalues> | |
<viz:size value="5.2251616"></viz:size> | |
<viz:position x="605.0925" y="-102.223816" z="0.0"></viz:position> | |
<viz:color r="15" g="98" b="12"></viz:color> | |
</node> | |
<node id="kirschbombe" label="kirschbombe"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.30993E-4"></attvalue> | |
<attvalue for="modularity_class" value="2"></attvalue> | |
<attvalue for="componentnumber" value="0"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="267"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0935645"></viz:size> | |
<viz:position x="-304.94824" y="439.2378" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="amandalicastro" label="amandalicastro"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.527102E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="378"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0114746"></viz:size> | |
<viz:position x="-1270.1716" y="399.2807" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="DHInstitute" label="DHInstitute"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.092015E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="294"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.083531"></viz:size> | |
<viz:position x="70.72934" y="9.489491" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="zotero" label="zotero"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.763016E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="222"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.1144266"></viz:size> | |
<viz:position x="179.57869" y="32.584934" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="MarjSkiBike" label="MarjSkiBike"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010917304"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="146"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.2596655"></viz:size> | |
<viz:position x="-1465.7365" y="390.06268" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="HsaraH_89" label="HsaraH_89"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.406207E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="254"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.0979977"></viz:size> | |
<viz:position x="100.082375" y="-1.2648282" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="Conor579" label="Conor579"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.311924E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="411"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0015664"></viz:size> | |
<viz:position x="-1066.8856" y="335.13443" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="fso1006" label="fso1006"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.311924E-4"></attvalue> | |
<attvalue for="modularity_class" value="8"></attvalue> | |
<attvalue for="componentnumber" value="8"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="412"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0015664"></viz:size> | |
<viz:position x="-1025.3456" y="396.09988" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="Rojas_Castro_A" label="Rojas_Castro_A"> | |
<attvalues> | |
<attvalue for="pageranks" value="8.3706E-4"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="214"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.142403"></viz:size> | |
<viz:position x="-42.615826" y="119.853584" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="linhduned" label="linhduned"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.001064952"></attvalue> | |
<attvalue for="modularity_class" value="6"></attvalue> | |
<attvalue for="componentnumber" value="9"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="156"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2473354"></viz:size> | |
<viz:position x="-6.7552004" y="116.807335" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="DannyNoonan1962" label="DannyNoonan1962"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.598545E-4"></attvalue> | |
<attvalue for="modularity_class" value="11"></attvalue> | |
<attvalue for="componentnumber" value="3"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="338"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0147643"></viz:size> | |
<viz:position x="168.4217" y="318.37543" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="OpenAssemblyEdu" label="OpenAssemblyEdu"> | |
<attvalues> | |
<attvalue for="pageranks" value="5.411825E-4"></attvalue> | |
<attvalue for="modularity_class" value="4"></attvalue> | |
<attvalue for="componentnumber" value="1"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="394"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.0061665"></viz:size> | |
<viz:position x="-1197.4585" y="149.88654" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="akhurma" label="akhurma"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0011554922"></attvalue> | |
<attvalue for="modularity_class" value="18"></attvalue> | |
<attvalue for="componentnumber" value="17"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="136"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.289025"></viz:size> | |
<viz:position x="-1122.8378" y="-152.03912" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="laurapasquini" label="laurapasquini"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0015578442"></attvalue> | |
<attvalue for="modularity_class" value="18"></attvalue> | |
<attvalue for="componentnumber" value="17"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="101"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.474287"></viz:size> | |
<viz:position x="-1170.0543" y="-142.14679" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="BU_BAArchAnth" label="BU_BAArchAnth"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.407175E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="247"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.098042"></viz:size> | |
<viz:position x="269.1801" y="-127.98186" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="felwert" label="felwert"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.407175E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="248"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.098042"></viz:size> | |
<viz:position x="369.82703" y="-163.85123" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="eltonteb" label="eltonteb"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.407175E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="249"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.098042"></viz:size> | |
<viz:position x="308.80014" y="-123.88722" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="christof77" label="christof77"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.407175E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="250"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.098042"></viz:size> | |
<viz:position x="345.6852" y="-112.37424" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="laurenfklein" label="laurenfklein"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0010021009"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="165"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.2183957"></viz:size> | |
<viz:position x="219.80879" y="-178.17938" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="alanyliu" label="alanyliu"> | |
<attvalues> | |
<attvalue for="pageranks" value="0.0012300399"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="1.0"></attvalue> | |
<attvalue for="type" value="manyLinks"></attvalue> | |
<attvalue for="centrality" value="130"></attvalue> | |
<attvalue for="degree" value="2"></attvalue> | |
</attvalues> | |
<viz:size value="5.32335"></viz:size> | |
<viz:position x="220.00462" y="-219.2985" z="0.0"></viz:position> | |
<viz:color r="4" g="89" b="0"></viz:color> | |
</node> | |
<node id="heavysixer" label="heavysixer"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.407175E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="251"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.098042"></viz:size> | |
<viz:position x="241.76714" y="-144.5716" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="yrochat" label="yrochat"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.407175E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="252"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.098042"></viz:size> | |
<viz:position x="341.07535" y="-143.17365" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
<node id="mwidner" label="mwidner"> | |
<attvalues> | |
<attvalue for="pageranks" value="7.407175E-4"></attvalue> | |
<attvalue for="modularity_class" value="7"></attvalue> | |
<attvalue for="componentnumber" value="10"></attvalue> | |
<attvalue for="newClusteringCoefficient" value="0.0"></attvalue> | |
<attvalue for="type" value="oneLink"></attvalue> | |
<attvalue for="centrality" value="253"></attvalue> | |
<attvalue for="degree" value="1"></attvalue> | |
</attvalues> | |
<viz:size value="5.098042"></viz:size> | |
<viz:position x="288.09543" y="-99.01131" z="0.0"></viz:position> | |
<viz:color r="206" g="255" b="215"></viz:color> | |
</node> | |
</nodes> | |
<edges> | |
<edge source="missy_librarian" target="EllenJoyce20" weight="3.0"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="missy_librarian" target="DarinWaters_Phd"> | |
<viz:color r="70" g="13" b="184"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="missy_librarian" target="Tracy_Jentzsch" weight="4.0"> | |
<viz:color r="80" g="13" b="174"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="missy_librarian" target="asagbed" weight="5.0"> | |
<viz:color r="77" g="13" b="177"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="missy_librarian" target="stephabarn" weight="3.0"> | |
<viz:color r="83" g="13" b="171"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="missy_librarian" target="mia_out" weight="4.0"> | |
<viz:color r="86" g="13" b="168"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="missy_librarian" target="MeghaninMotion" weight="3.0"> | |
<viz:color r="94" g="13" b="160"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="missy_librarian" target="TranscribeSI"> | |
<viz:color r="119" g="13" b="135"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="EllenJoyce20" target="mia_out" weight="2.0"> | |
<viz:color r="115" g="13" b="139"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="EllenJoyce20" target="MeghaninMotion"> | |
<viz:color r="61" g="12" b="193"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="EllenJoyce20" target="fraistat"> | |
<viz:color r="104" g="13" b="150"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="EllenJoyce20" target="TranscribeSI"> | |
<viz:color r="100" g="13" b="154"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="EllenJoyce20" target="benwbrum" weight="2.0"> | |
<viz:color r="114" g="13" b="140"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="OliviaDDorsey" target="AnaSalter" weight="3.0"> | |
<viz:color r="78" g="13" b="176"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="libconferences" target="galvan_as" weight="2.0"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="galvan_as" target="reese_terry"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="galvan_as" target="trogool"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="EllenJoyce20" weight="3.0"> | |
<viz:color r="129" g="14" b="125"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="asagbed"> | |
<viz:color r="167" g="14" b="87"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="stephabarn"> | |
<viz:color r="153" g="14" b="101"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="benwbrum" weight="4.0"> | |
<viz:color r="145" g="14" b="109"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="twibbleio"> | |
<viz:color r="117" g="13" b="137"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="l4ntyrn"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="twitter"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="skrug"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="powerpoint"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="Hadro"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="riordan"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="mgiraldo"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Tracy_Jentzsch" target="RickLiebling"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="asagbed" target="EllenJoyce20"> | |
<viz:color r="100" g="13" b="154"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="asagbed" target="stephabarn"> | |
<viz:color r="117" g="13" b="137"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="asagbed" target="mia_out" weight="4.0"> | |
<viz:color r="129" g="14" b="125"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="asagbed" target="JaneEvaBaxter"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="asagbed" target="HistStagville"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="asagbed" target="StewartVarner"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="stephabarn" target="TED_TALKS"> | |
<viz:color r="64" g="13" b="190"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="UDMuseumStudies" target="EllenJoyce20"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="eiratansey" target="pwolsen"> | |
<viz:color r="123" g="13" b="131"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="eiratansey" target="archivesnext" weight="3.0"> | |
<viz:color r="152" g="14" b="102"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="eiratansey" target="samplereality"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="eiratansey" target="SNAP_Roundtable"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="eiratansey" target="UCLibraries"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="eiratansey" target="DannyNoonan1962"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="OurMarathon" weight="11.0"> | |
<viz:color r="112" g="13" b="142"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="jenguiliano" weight="13.0"> | |
<viz:color r="110" g="13" b="144"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="sjappleford" weight="6.0"> | |
<viz:color r="106" g="13" b="148"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="neatline" weight="3.0"> | |
<viz:color r="136" g="14" b="118"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="zeynep"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="amhistorymuseum" weight="15.0"> | |
<viz:color r="197" g="15" b="57"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="KevinG_Smith"> | |
<viz:color r="147" g="14" b="107"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="ryancordell"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="EMDillon"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="nowviskie"> | |
<viz:color r="148" g="14" b="106"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="NEarchivists"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="omeka"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="lizlosh" weight="2.0"> | |
<viz:color r="136" g="14" b="118"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="profjuliette" weight="2.0"> | |
<viz:color r="136" g="14" b="118"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="avaarndt" weight="2.0"> | |
<viz:color r="167" g="14" b="87"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JimMc_Grath" target="chronicle"> | |
<viz:color r="158" g="14" b="96"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="OliviaDDorsey" weight="2.0"> | |
<viz:color r="98" g="13" b="156"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="GeorgeOnline" weight="13.0"> | |
<viz:color r="222" g="15" b="32"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="TheAVClub" weight="2.0"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="Bartography"> | |
<viz:color r="121" g="13" b="133"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="philomela_twine"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="BoardsandBrews" weight="2.0"> | |
<viz:color r="118" g="13" b="136"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="tassietheg" weight="2.0"> | |
<viz:color r="145" g="14" b="109"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="WetheHumanities" weight="2.0"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="gbl"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="FemTechNet"> | |
<viz:color r="122" g="13" b="132"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="spgreenhalgh"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="ModernLearners"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="readywriting" target="amandalicastro"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="aliciapeaker" target="JimMc_Grath" weight="9.0"> | |
<viz:color r="118" g="13" b="136"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="aliciapeaker" target="jenguiliano" weight="3.0"> | |
<viz:color r="94" g="13" b="160"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="aliciapeaker" target="sjappleford" weight="2.0"> | |
<viz:color r="87" g="13" b="167"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="aliciapeaker" target="KevinBGunn"> | |
<viz:color r="84" g="13" b="170"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="AnaSalter" target="readywriting" weight="29.0"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="AnaSalter" target="alothian" weight="7.0"> | |
<viz:color r="85" g="13" b="169"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="AnaSalter" target="BoardsandBrews"> | |
<viz:color r="80" g="13" b="174"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Radishwak" target="mia_out" weight="2.0"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mia_out" target="Tracy_Jentzsch" weight="10.0"> | |
<viz:color r="138" g="14" b="116"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mia_out" target="stephabarn" weight="2.0"> | |
<viz:color r="146" g="14" b="108"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mia_out" target="benwbrum" weight="8.0"> | |
<viz:color r="107" g="13" b="147"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mia_out" target="oldweather"> | |
<viz:color r="148" g="14" b="106"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mia_out" target="twibbleio"> | |
<viz:color r="150" g="14" b="104"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mia_out" target="Letters1916"> | |
<viz:color r="125" g="13" b="129"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mia_out" target="TED_TALKS"> | |
<viz:color r="198" g="15" b="56"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="wragge" target="UMD_MITH"> | |
<viz:color r="134" g="14" b="120"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="wragge" target="chnm"> | |
<viz:color r="85" g="13" b="169"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="wragge" target="brettbobley"> | |
<viz:color r="94" g="13" b="160"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jy_kim29" target="BitCurator"> | |
<viz:color r="89" g="13" b="165"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="trevormunoz" target="mkirschenbaum" weight="2.0"> | |
<viz:color r="113" g="13" b="141"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="trevormunoz" target="karikraus" weight="2.0"> | |
<viz:color r="149" g="14" b="105"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GeorgeOnline" target="OliviaDDorsey"> | |
<viz:color r="96" g="13" b="158"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GeorgeOnline" target="AnaSalter" weight="22.0"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GeorgeOnline" target="jy_kim29" weight="4.0"> | |
<viz:color r="134" g="14" b="120"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GeorgeOnline" target="sramsay"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GeorgeOnline" target="ablerism" weight="3.0"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GeorgeOnline" target="harikondabolu"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GeorgeOnline" target="Bartography"> | |
<viz:color r="144" g="14" b="110"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GeorgeOnline" target="AccessibleFu"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GeorgeOnline" target="mdfoodcoop"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sgahistory" target="erinblasco" weight="6.0"> | |
<viz:color r="152" g="14" b="102"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sgahistory" target="puraconjetura"> | |
<viz:color r="167" g="14" b="87"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sgahistory" target="clioweb"> | |
<viz:color r="111" g="13" b="143"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sgahistory" target="_why"> | |
<viz:color r="124" g="13" b="130"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="walshbr" target="wayne_graham" weight="2.0"> | |
<viz:color r="68" g="13" b="186"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="walshbr" target="keenera" weight="3.0"> | |
<viz:color r="85" g="13" b="169"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="neptunemir" target="HILT_MITH" weight="3.0"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="neptunemir" target="Zoe_LeBlanc"> | |
<viz:color r="89" g="13" b="165"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HILT_MITH" target="Feminist_Energy" weight="3.0"> | |
<viz:color r="142" g="14" b="112"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HILT_MITH" target="FolgerLibrary" weight="2.0"> | |
<viz:color r="145" g="14" b="109"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HILT_MITH" target="WMSTstudio" weight="2.0"> | |
<viz:color r="140" g="14" b="114"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HILT_MITH" target="librarycongress" weight="2.0"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HILT_MITH" target="nlm_news" weight="2.0"> | |
<viz:color r="145" g="14" b="109"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HILT_MITH" target="ushmm" weight="2.0"> | |
<viz:color r="158" g="14" b="96"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HILT_MITH" target="airandspace" weight="2.0"> | |
<viz:color r="150" g="14" b="104"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HILT_MITH" target="raffazizzi" weight="2.0"> | |
<viz:color r="138" g="14" b="116"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="brandontlocke" target="Elijah_Meeks" weight="4.0"> | |
<viz:color r="111" g="13" b="143"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="brandontlocke" target="Gephi"> | |
<viz:color r="150" g="14" b="104"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="brandontlocke" target="scott_bot"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DaliaGuerreiro" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="BlindFilmCritic" target="GeorgeOnline" weight="2.0"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MA_SouthAust" target="mia_out"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ardeninred" target="wayne_graham"> | |
<viz:color r="98" g="13" b="156"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ardeninred" target="walshbr"> | |
<viz:color r="81" g="13" b="173"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ardeninred" target="bendigle"> | |
<viz:color r="98" g="13" b="156"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ardeninred" target="keenera" weight="2.0"> | |
<viz:color r="130" g="14" b="124"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ardeninred" target="dr_heil"> | |
<viz:color r="111" g="13" b="143"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DrTonieshaT" target="_katiedidnt" weight="4.0"> | |
<viz:color r="91" g="13" b="163"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DrTonieshaT" target="tmcphers" weight="6.0"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DrTonieshaT" target="NEH_ODH"> | |
<viz:color r="117" g="13" b="137"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DrTonieshaT" target="PVAMULibrary"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jenguiliano" target="sleonchnm"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bendigle" target="keenera" weight="4.0"> | |
<viz:color r="94" g="13" b="160"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bendigle" target="dr_heil" weight="5.0"> | |
<viz:color r="94" g="13" b="160"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MeghaninMotion" target="Tracy_Jentzsch" weight="2.0"> | |
<viz:color r="102" g="13" b="152"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MeghaninMotion" target="mia_out" weight="5.0"> | |
<viz:color r="93" g="13" b="161"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MeghaninMotion" target="fraistat" weight="3.0"> | |
<viz:color r="96" g="13" b="158"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MeghaninMotion" target="benwbrum"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="canlift40lbs" target="missy_librarian"> | |
<viz:color r="93" g="13" b="161"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="canlift40lbs" target="mia_out" weight="4.0"> | |
<viz:color r="129" g="14" b="125"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="canlift40lbs" target="FarmersMarketUM"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="fraistat" target="mia_out" weight="10.0"> | |
<viz:color r="122" g="13" b="132"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="fraistat" target="benwbrum" weight="4.0"> | |
<viz:color r="113" g="13" b="141"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="miniaturekites" target="michelletiedje"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="michelletiedje" target="wayne_graham"> | |
<viz:color r="85" g="13" b="169"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="michelletiedje" target="dr_heil" weight="2.0"> | |
<viz:color r="172" g="14" b="82"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="michelletiedje" target="nirak"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="michelletiedje" target="LNKCodingWomen"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="isharacomix" target="readywriting" weight="2.0"> | |
<viz:color r="119" g="13" b="135"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="isharacomix" target="AnaSalter"> | |
<viz:color r="56" g="12" b="198"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="isharacomix" target="GeorgeOnline"> | |
<viz:color r="142" g="14" b="112"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amycep" target="HILT_MITH" weight="2.0"> | |
<viz:color r="133" g="14" b="121"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amycep" target="Feminist_Energy" weight="2.0"> | |
<viz:color r="113" g="13" b="141"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amycep" target="MelissaRogers17" weight="4.0"> | |
<viz:color r="67" g="13" b="187"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amycep" target="WMSTstudio" weight="2.0"> | |
<viz:color r="82" g="13" b="172"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="digitaldante" target="HILT_MITH" weight="4.0"> | |
<viz:color r="140" g="14" b="114"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="digitaldante" target="amycep" weight="2.0"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="digitaldante" target="MelissaRogers17"> | |
<viz:color r="90" g="13" b="164"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="digitaldante" target="mkgold"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KevinBGunn" target="JimMc_Grath" weight="9.0"> | |
<viz:color r="127" g="13" b="127"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KevinBGunn" target="jenguiliano" weight="3.0"> | |
<viz:color r="96" g="13" b="158"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KevinBGunn" target="sjappleford" weight="2.0"> | |
<viz:color r="88" g="13" b="166"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KevinBGunn" target="DHCommons"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KevinBGunn" target="nowviskie"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KevinBGunn" target="LibSkrat"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="TranscribeSI" target="Tracy_Jentzsch" weight="4.0"> | |
<viz:color r="128" g="14" b="126"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="TranscribeSI" target="MeghaninMotion" weight="2.0"> | |
<viz:color r="82" g="13" b="172"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ashleyyoung2010" target="Elijah_Meeks" weight="3.0"> | |
<viz:color r="106" g="13" b="148"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nickfalkner" target="cljennings"> | |
<viz:color r="149" g="14" b="105"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nickfalkner" target="bewmaynes"> | |
<viz:color r="136" g="14" b="118"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nickfalkner" target="juliekane99" weight="3.0"> | |
<viz:color r="100" g="13" b="154"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nickfalkner" target="googledownunder"> | |
<viz:color r="168" g="14" b="86"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nickfalkner" target="TheBoardAndBrew"> | |
<viz:color r="149" g="14" b="105"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nickfalkner" target="anvcscalar" weight="2.0"> | |
<viz:color r="146" g="14" b="108"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="udhistory" target="mia_out"> | |
<viz:color r="129" g="14" b="125"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="udhistory" target="benwbrum"> | |
<viz:color r="144" g="14" b="110"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="keenera" target="wayne_graham" weight="3.0"> | |
<viz:color r="101" g="13" b="153"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="keenera" target="BonifaceVIII"> | |
<viz:color r="120" g="13" b="134"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="keenera" target="Conor579"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="keenera" target="fso1006"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jpkeene" target="galvan_as"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JDFielder" target="readywriting"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dr_heil" target="wayne_graham" weight="3.0"> | |
<viz:color r="114" g="13" b="140"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dr_heil" target="keenera" weight="6.0"> | |
<viz:color r="100" g="13" b="154"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dr_heil" target="TGBerman"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dr_heil" target="djp2025"> | |
<viz:color r="136" g="14" b="118"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dr_heil" target="nabsiddiqui"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bookdal" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bookdal" target="sramsay"> | |
<viz:color r="0" g="12" b="255"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="rita_vanduinen" target="HILT_MITH" weight="4.0"> | |
<viz:color r="150" g="14" b="104"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="rita_vanduinen" target="ASLE_US"> | |
<viz:color r="118" g="13" b="136"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="rita_vanduinen" target="MelissaRogers17"> | |
<viz:color r="77" g="13" b="177"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="RStuhr" target="HILT_MITH" weight="3.0"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="RStuhr" target="amycep"> | |
<viz:color r="89" g="13" b="165"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="RStuhr" target="MelissaRogers17" weight="3.0"> | |
<viz:color r="95" g="13" b="159"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="RStuhr" target="WMSTstudio" weight="2.0"> | |
<viz:color r="94" g="13" b="160"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="_nabilk" target="UMD_MITH"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="SBanks20" target="benwbrum" weight="3.0"> | |
<viz:color r="99" g="13" b="155"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="CGSaw" target="monicalmercado"> | |
<viz:color r="101" g="13" b="153"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="monicalmercado" target="UMD_MITH" weight="2.0"> | |
<viz:color r="100" g="13" b="154"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="monicalmercado" target="chnm" weight="2.0"> | |
<viz:color r="92" g="13" b="162"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="BarcelonaLab" target="ardeninred"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="electricarchaeo" target="readywriting" weight="3.0"> | |
<viz:color r="109" g="13" b="145"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="electricarchaeo" target="GeorgeOnline" weight="3.0"> | |
<viz:color r="107" g="13" b="147"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dnolan" target="readywriting"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="alothian" target="readywriting" weight="7.0"> | |
<viz:color r="128" g="14" b="126"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="alothian" target="GeorgeOnline" weight="4.0"> | |
<viz:color r="128" g="14" b="126"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="alothian" target="FemTechNet"> | |
<viz:color r="96" g="13" b="158"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="NeilFrau" target="trevormunoz" weight="2.0"> | |
<viz:color r="106" g="13" b="148"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="pmhswe" target="erinblasco"> | |
<viz:color r="120" g="13" b="134"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="erinblasco" target="cynthiaway"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="erinblasco" target="jcaple"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="archivesnext" target="AnneFreeland"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dougdechow" target="mia_out"> | |
<viz:color r="143" g="14" b="111"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dougdechow" target="benwbrum"> | |
<viz:color r="129" g="14" b="125"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dougdechow" target="oldweather"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dougdechow" target="johnolilly"> | |
<viz:color r="70" g="13" b="184"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Acuity_Design" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="_katiedidnt" target="tmcphers" weight="4.0"> | |
<viz:color r="99" g="13" b="155"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="_katiedidnt" target="jarahmoesch"> | |
<viz:color r="79" g="13" b="175"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Chronotope" target="readywriting"> | |
<viz:color r="119" g="13" b="135"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Chronotope" target="AnaSalter" weight="2.0"> | |
<viz:color r="56" g="12" b="198"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Chronotope" target="GeorgeOnline" weight="2.0"> | |
<viz:color r="142" g="14" b="112"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="AnneSarahRubin" target="UMBC"> | |
<viz:color r="121" g="13" b="133"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="AnneSarahRubin" target="DDMeringolo" weight="2.0"> | |
<viz:color r="32" g="12" b="222"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="AnneSarahRubin" target="chnm"> | |
<viz:color r="83" g="13" b="171"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MelissaRogers17" target="HILT_MITH" weight="8.0"> | |
<viz:color r="130" g="14" b="124"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MelissaRogers17" target="WMSTstudio" weight="5.0"> | |
<viz:color r="83" g="13" b="171"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jimccasey1" target="Tracy_Jentzsch" weight="3.0"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="theriversideUCC" target="fraistat"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="schreib100" target="fraistat"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DigitalHistUMBC" target="AnneSarahRubin" weight="3.0"> | |
<viz:color r="48" g="12" b="206"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DigitalHistUMBC" target="UMBC"> | |
<viz:color r="123" g="13" b="131"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DigitalHistUMBC" target="chnm"> | |
<viz:color r="115" g="13" b="139"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="adburgosjr" target="erinblasco" weight="2.0"> | |
<viz:color r="115" g="13" b="139"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="adburgosjr" target="HallofFamePrez"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="katebeavs" target="HILT_MITH" weight="4.0"> | |
<viz:color r="130" g="14" b="124"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="katebeavs" target="librarycongress"> | |
<viz:color r="45" g="12" b="209"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Elijah_Meeks" target="Gephi"> | |
<viz:color r="109" g="13" b="145"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Elijah_Meeks" target="alanyliu" weight="2.0"> | |
<viz:color r="75" g="13" b="179"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ProfessMoravec" target="mia_out"> | |
<viz:color r="138" g="14" b="116"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="thomasgpadilla" target="HILT_MITH" weight="5.0"> | |
<viz:color r="199" g="15" b="55"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="thomasgpadilla" target="datadryad"> | |
<viz:color r="160" g="14" b="94"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="thomasgpadilla" target="zotero" weight="2.0"> | |
<viz:color r="160" g="14" b="94"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amhistorymuseum" target="HolocaustMuseum"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="yukonakamura_" target="HILT_MITH" weight="6.0"> | |
<viz:color r="130" g="14" b="124"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Profrehn" target="DrTonieshaT"> | |
<viz:color r="115" g="13" b="139"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Profrehn" target="ararebit"> | |
<viz:color r="93" g="13" b="161"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Profrehn" target="tmcphers" weight="2.0"> | |
<viz:color r="149" g="14" b="105"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ararebit" target="DevelopDH"> | |
<viz:color r="93" g="13" b="161"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ararebit" target="tmcphers" weight="2.0"> | |
<viz:color r="178" g="14" b="76"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="tmcphers" target="NEH_ODH"> | |
<viz:color r="150" g="14" b="104"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="tmcphers" target="jarahmoesch" weight="2.0"> | |
<viz:color r="159" g="14" b="95"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ctschroeder" target="ararebit" weight="2.0"> | |
<viz:color r="116" g="13" b="138"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ctschroeder" target="tmcphers" weight="2.0"> | |
<viz:color r="143" g="14" b="111"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jaheppler" target="ararebit"> | |
<viz:color r="88" g="13" b="166"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jaheppler" target="tmcphers"> | |
<viz:color r="157" g="14" b="97"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="tjowens" target="mia_out" weight="2.0"> | |
<viz:color r="102" g="13" b="152"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="tjowens" target="benwbrum"> | |
<viz:color r="118" g="13" b="136"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="tjowens" target="opba"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="cliotropic" target="ararebit"> | |
<viz:color r="115" g="13" b="139"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="cliotropic" target="tmcphers" weight="6.0"> | |
<viz:color r="107" g="13" b="147"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="vac11" target="mkirschenbaum"> | |
<viz:color r="91" g="13" b="163"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="vac11" target="karikraus"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bobbylsmiley" target="nickfalkner"> | |
<viz:color r="129" g="14" b="125"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bobbylsmiley" target="juliekane99"> | |
<viz:color r="119" g="13" b="135"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mkirschenbaum" target="karikraus"> | |
<viz:color r="92" g="13" b="162"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sabrown07" target="erinblasco" weight="2.0"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="subversiveone2" target="JimMc_Grath" weight="4.0"> | |
<viz:color r="181" g="14" b="73"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="subversiveone2" target="jenguiliano"> | |
<viz:color r="137" g="14" b="117"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="subversiveone2" target="sjappleford"> | |
<viz:color r="128" g="14" b="126"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="subversiveone2" target="amhistorymuseum" weight="5.0"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="subversiveone2" target="jeriwieringa" weight="2.0"> | |
<viz:color r="128" g="14" b="126"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ArtistLibrarian" target="HILT_MITH" weight="2.0"> | |
<viz:color r="126" g="13" b="128"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ArtistLibrarian" target="amycep"> | |
<viz:color r="101" g="13" b="153"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ArtistLibrarian" target="DOTS_UMD"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="panethelion" target="sgahistory"> | |
<viz:color r="144" g="14" b="110"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KDImpellizeri" target="erinblasco"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="inkthya" target="sgahistory"> | |
<viz:color r="144" g="14" b="110"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DDMeringolo" target="DigitalHistUMBC" weight="2.0"> | |
<viz:color r="30" g="12" b="224"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DDMeringolo" target="UMBC"> | |
<viz:color r="103" g="13" b="151"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DDMeringolo" target="chnm"> | |
<viz:color r="100" g="13" b="154"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="rachellaudan" target="sgahistory"> | |
<viz:color r="167" g="14" b="87"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dbpdata" target="nickfalkner"> | |
<viz:color r="168" g="14" b="86"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HikeOurPlanet" target="HILT_MITH"> | |
<viz:color r="150" g="14" b="104"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="kmdougan" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MBDesignsVA" target="JimMc_Grath"> | |
<viz:color r="147" g="14" b="107"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MBDesignsVA" target="amhistorymuseum"> | |
<viz:color r="101" g="13" b="153"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sarepal" target="HILT_MITH" weight="3.0"> | |
<viz:color r="178" g="14" b="76"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sarepal" target="amycep" weight="2.0"> | |
<viz:color r="116" g="13" b="138"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sarepal" target="MelissaRogers17" weight="2.0"> | |
<viz:color r="104" g="13" b="150"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sarepal" target="WMSTstudio"> | |
<viz:color r="63" g="12" b="191"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sarepal" target="EmoryCDS"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="reedeth" target="nickfalkner" weight="3.0"> | |
<viz:color r="95" g="13" b="159"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="reedeth" target="bobbylsmiley" weight="3.0"> | |
<viz:color r="71" g="13" b="183"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="reedeth" target="juliekane99" weight="3.0"> | |
<viz:color r="73" g="13" b="181"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Kelly_Quinn_23" target="JimMc_Grath"> | |
<viz:color r="119" g="13" b="135"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Kelly_Quinn_23" target="amhistorymuseum"> | |
<viz:color r="127" g="13" b="127"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="p_ovalle" target="JimMc_Grath" weight="3.0"> | |
<viz:color r="141" g="14" b="113"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="p_ovalle" target="amhistorymuseum" weight="2.0"> | |
<viz:color r="99" g="13" b="155"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bryndiana_jones" target="amycep"> | |
<viz:color r="105" g="13" b="149"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bryndiana_jones" target="MelissaRogers17" weight="2.0"> | |
<viz:color r="96" g="13" b="158"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bryndiana_jones" target="WMSTstudio"> | |
<viz:color r="68" g="13" b="186"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="lindabnorris" target="JimMc_Grath"> | |
<viz:color r="147" g="14" b="107"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="lindabnorris" target="amhistorymuseum"> | |
<viz:color r="101" g="13" b="153"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="CuratorLucy" target="erinblasco"> | |
<viz:color r="109" g="13" b="145"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="publiccurator" target="JimMc_Grath"> | |
<viz:color r="147" g="14" b="107"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="publiccurator" target="amhistorymuseum"> | |
<viz:color r="101" g="13" b="153"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="NUPublicHistory" target="JimMc_Grath"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="patrick_mj" target="readywriting" weight="3.0"> | |
<viz:color r="145" g="14" b="109"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bradleymnelson" target="Tracy_Jentzsch"> | |
<viz:color r="94" g="13" b="160"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="TomCollinsAndCo" target="fraistat"> | |
<viz:color r="117" g="13" b="137"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="TomCollinsAndCo" target="benwbrum"> | |
<viz:color r="149" g="14" b="105"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jenniferisve" target="JimMc_Grath"> | |
<viz:color r="133" g="14" b="121"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jenniferisve" target="jenguiliano"> | |
<viz:color r="137" g="14" b="117"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KevinG_Smith" target="amhistorymuseum" weight="5.0"> | |
<viz:color r="97" g="13" b="157"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="aunigelles" target="amhistorymuseum" weight="3.0"> | |
<viz:color r="97" g="13" b="157"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="aunigelles" target="amhistoryintern"> | |
<viz:color r="102" g="13" b="152"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="caitkear" target="erinblasco" weight="3.0"> | |
<viz:color r="116" g="13" b="138"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="CRAcademyNPS" target="HILT_MITH"> | |
<viz:color r="150" g="14" b="104"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="PhilofWrite" target="subversiveone2"> | |
<viz:color r="167" g="14" b="87"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Louisedenoon" target="erinblasco"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="markcheathem" target="subversiveone2"> | |
<viz:color r="167" g="14" b="87"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="draw8ing" target="erinblasco"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amhistoryintern" target="amhistorymuseum"> | |
<viz:color r="154" g="14" b="100"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Dan_Blick" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="twinethreads" target="AnaSalter"> | |
<viz:color r="72" g="13" b="182"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="twinethreads" target="GeorgeOnline"> | |
<viz:color r="148" g="14" b="106"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="twinethreads" target="alothian"> | |
<viz:color r="106" g="13" b="148"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="UMBCHumanities" target="AnneSarahRubin"> | |
<viz:color r="31" g="12" b="223"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="UMBCHumanities" target="DigitalHistUMBC"> | |
<viz:color r="30" g="12" b="224"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="UMBCHumanities" target="UMBC"> | |
<viz:color r="137" g="14" b="117"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="UMBCHumanities" target="DDMeringolo"> | |
<viz:color r="0" g="12" b="255"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="UMBCHumanities" target="chnm"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MeganPeiser" target="JimMc_Grath"> | |
<viz:color r="132" g="14" b="122"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MeganPeiser" target="jenguiliano"> | |
<viz:color r="136" g="14" b="118"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MeganPeiser" target="DHCommons"> | |
<viz:color r="24" g="12" b="230"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DHCommons" target="JimMc_Grath" weight="2.0"> | |
<viz:color r="125" g="13" b="129"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DHCommons" target="jenguiliano"> | |
<viz:color r="117" g="13" b="137"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KMH_nowinVA" target="JimMc_Grath"> | |
<viz:color r="126" g="13" b="128"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KMH_nowinVA" target="jenguiliano"> | |
<viz:color r="124" g="13" b="130"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KMH_nowinVA" target="KevinBGunn"> | |
<viz:color r="105" g="13" b="149"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KMH_nowinVA" target="DHCommons"> | |
<viz:color r="16" g="12" b="238"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="juliekane99" target="Mark_A_H"> | |
<viz:color r="160" g="14" b="94"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="thelodahl" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="anna_kijas" target="JimMc_Grath" weight="2.0"> | |
<viz:color r="115" g="13" b="139"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="anna_kijas" target="jenguiliano"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="anna_kijas" target="DHCommons"> | |
<viz:color r="73" g="13" b="181"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="gregg_sh" target="JimMc_Grath"> | |
<viz:color r="132" g="14" b="122"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="gregg_sh" target="jenguiliano"> | |
<viz:color r="136" g="14" b="118"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="gregg_sh" target="DHCommons"> | |
<viz:color r="24" g="12" b="230"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="kwandrews" target="galvan_as"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ADHOrg" target="JimMc_Grath"> | |
<viz:color r="132" g="14" b="122"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ADHOrg" target="jenguiliano"> | |
<viz:color r="136" g="14" b="118"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ADHOrg" target="DHCommons"> | |
<viz:color r="24" g="12" b="230"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DigitCurator" target="ardeninred"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="purplekimchi" target="DrTonieshaT" weight="3.0"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="digisam_ra" target="mia_out"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DaveMazella" target="tmcphers"> | |
<viz:color r="151" g="14" b="103"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="huber_al" target="tmcphers"> | |
<viz:color r="151" g="14" b="103"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="toughLoveforx" target="readywriting"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jillydreadful" target="readywriting"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jeriwieringa" target="JimMc_Grath" weight="2.0"> | |
<viz:color r="136" g="14" b="118"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GhostProf" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sharon_howard" target="mia_out"> | |
<viz:color r="129" g="14" b="125"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sharon_howard" target="benwbrum"> | |
<viz:color r="144" g="14" b="110"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="gmcharlt" target="galvan_as"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="asgoodson" target="galvan_as"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DHChipotle" target="HILT_MITH" weight="3.0"> | |
<viz:color r="110" g="13" b="144"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="archivesgeek" target="HILT_MITH" weight="5.0"> | |
<viz:color r="182" g="14" b="72"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="archivesgeek" target="DHChipotle"> | |
<viz:color r="84" g="13" b="170"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="archivesgeek" target="GA_Archivists" weight="2.0"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jeffreymoro" target="miriamkp"> | |
<viz:color r="86" g="13" b="168"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="celeste_sharpe" target="miriamkp"> | |
<viz:color r="86" g="13" b="168"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bayerc" target="JimMc_Grath"> | |
<viz:color r="153" g="14" b="101"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bayerc" target="OurMarathon"> | |
<viz:color r="85" g="13" b="169"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bayerc" target="ryancordell"> | |
<viz:color r="43" g="12" b="211"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bayerc" target="EMDillon"> | |
<viz:color r="10" g="12" b="244"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ryancordell" target="aliciapeaker"> | |
<viz:color r="80" g="13" b="174"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="NatashaBarret18" target="mia_out"> | |
<viz:color r="129" g="14" b="125"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="NatashaBarret18" target="benwbrum"> | |
<viz:color r="144" g="14" b="110"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="tehgortlib" target="KevinBGunn"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="profwernimont" target="DrTonieshaT" weight="2.0"> | |
<viz:color r="105" g="13" b="149"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="profwernimont" target="tmcphers" weight="2.0"> | |
<viz:color r="112" g="13" b="142"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="profwernimont" target="NEH_ODH"> | |
<viz:color r="75" g="13" b="179"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="profwernimont" target="jasonrhody"> | |
<viz:color r="90" g="13" b="164"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="profwernimont" target="mukurtu"> | |
<viz:color r="156" g="14" b="98"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nealstimler" target="HILT_MITH" weight="2.0"> | |
<viz:color r="159" g="14" b="95"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sendelbach" target="HILT_MITH" weight="2.0"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="_fionamor" target="sgahistory"> | |
<viz:color r="122" g="13" b="132"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="EuropeanaTech" target="ardeninred"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KusturieM" target="trevormunoz"> | |
<viz:color r="142" g="14" b="112"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="valentinec89" target="ardeninred" weight="2.0"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="coblezc" target="trevormunoz" weight="2.0"> | |
<viz:color r="97" g="13" b="157"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JianQin" target="ardeninred"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="shoemakr" target="readywriting"> | |
<viz:color r="122" g="13" b="132"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="shoemakr" target="BoardsandBrews"> | |
<viz:color r="28" g="12" b="226"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ArchivesGirl" target="eiratansey"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="AnnamFerri" target="eiratansey"> | |
<viz:color r="123" g="13" b="131"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="tassietheg" target="adri_bs4"> | |
<viz:color r="159" g="14" b="95"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="stephestellar" target="archivesgeek" weight="2.0"> | |
<viz:color r="119" g="13" b="135"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HancockNiki" target="amycep"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="trentmkays" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mcclan" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HughRundle" target="mia_out"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Wikisteff" target="ardeninred"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jenniferaviva" target="ardeninred"> | |
<viz:color r="137" g="14" b="117"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="magpie" target="wayne_graham"> | |
<viz:color r="81" g="13" b="173"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="magpie" target="ardeninred" weight="2.0"> | |
<viz:color r="151" g="14" b="103"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Zoe_LeBlanc" target="HILT_MITH" weight="2.0"> | |
<viz:color r="133" g="14" b="121"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Zoe_LeBlanc" target="amycep"> | |
<viz:color r="110" g="13" b="144"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="needalibraryjob" target="eiratansey"> | |
<viz:color r="123" g="13" b="131"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="irishchick60" target="RStuhr"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="morbidflight" target="trevormunoz"> | |
<viz:color r="142" g="14" b="112"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="lynnemthomas" target="trevormunoz"> | |
<viz:color r="110" g="13" b="144"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="RBMSinfo" target="trevormunoz"> | |
<viz:color r="113" g="13" b="141"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="captain_maybe" target="eiratansey"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="wdeal" target="subversiveone2" weight="2.0"> | |
<viz:color r="137" g="14" b="117"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="save4use" target="trevormunoz" weight="2.0"> | |
<viz:color r="142" g="14" b="112"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="_cfwillett" target="JimMc_Grath" weight="2.0"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="_cfwillett" target="OurMarathon"> | |
<viz:color r="84" g="13" b="170"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="abschreiber" target="wayne_graham"> | |
<viz:color r="77" g="13" b="177"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="abschreiber" target="walshbr"> | |
<viz:color r="61" g="12" b="193"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="thinkingskillsc" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mollyhardy" target="GeorgeOnline"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="krisshaffer" target="galvan_as"> | |
<viz:color r="94" g="13" b="160"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="NortheasternATS" target="JimMc_Grath"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="TheFireTracker2" target="nickfalkner"> | |
<viz:color r="168" g="14" b="86"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="SVSTEM" target="dougdechow"> | |
<viz:color r="132" g="14" b="122"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="SVSTEM" target="johnolilly"> | |
<viz:color r="144" g="14" b="110"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="cmusv_dmi" target="nickfalkner" weight="2.0"> | |
<viz:color r="168" g="14" b="86"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="SF_BayArea_ACM" target="nickfalkner"> | |
<viz:color r="168" g="14" b="86"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ranti" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nmdnet" target="Tracy_Jentzsch"> | |
<viz:color r="117" g="13" b="137"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nmdnet" target="mia_out"> | |
<viz:color r="150" g="14" b="104"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="hannahlj007" target="Elijah_Meeks"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jo_frankie" target="sgahistory"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jo_frankie" target="yale_dh"> | |
<viz:color r="84" g="13" b="170"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="meribecks" target="JimMc_Grath"> | |
<viz:color r="156" g="14" b="98"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="meribecks" target="sjappleford"> | |
<viz:color r="79" g="13" b="175"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="nypl_labs" target="DrTonieshaT"> | |
<viz:color r="132" g="14" b="122"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ernestopriego" target="digitaldante"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="OpenRepository" target="OA_Button"> | |
<viz:color r="6" g="12" b="248"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="OpenAxes" target="OA_Button"> | |
<viz:color r="6" g="12" b="248"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GTCPlus" target="tmcphers" weight="2.0"> | |
<viz:color r="151" g="14" b="103"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="SHHHenry" target="galvan_as"> | |
<viz:color r="120" g="13" b="134"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="SHHHenry" target="UMDLibraries"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="KLeuner" target="tmcphers"> | |
<viz:color r="157" g="14" b="97"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jsantley" target="brandontlocke"> | |
<viz:color r="150" g="14" b="104"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jsantley" target="Elijah_Meeks"> | |
<viz:color r="114" g="13" b="140"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jsantley" target="scott_bot"> | |
<viz:color r="36" g="12" b="218"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mbrit" target="readywriting"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="bwittgren" target="johanoomen" weight="2.0"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="TranscriBentham" target="Tracy_Jentzsch" weight="2.0"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="TranscriBentham" target="TranscribeSI" weight="2.0"> | |
<viz:color r="38" g="12" b="216"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Nsousanis" target="dr_heil"> | |
<viz:color r="160" g="14" b="94"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Nsousanis" target="djp2025"> | |
<viz:color r="80" g="13" b="174"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="yeskatydid" target="archivesgeek"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="TheOneUmbrella" target="johanoomen"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MrGerry" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="rgwakeman" target="archivesgeek"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="CinziaPG" target="stephabarn"> | |
<viz:color r="105" g="13" b="149"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="CinziaPG" target="TED_TALKS"> | |
<viz:color r="146" g="14" b="108"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Crewninerlieber" target="PapetheGreat" weight="2.0"> | |
<viz:color r="0" g="12" b="255"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MiaZamoraPhD" target="ProfHacker"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="kmapesy" target="mitchplaney" weight="2.0"> | |
<viz:color r="160" g="14" b="94"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="kmapesy" target="ebonymagnus" weight="4.0"> | |
<viz:color r="160" g="14" b="94"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ChayaGarbarini" target="JimMc_Grath"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mchris4duke" target="DrTonieshaT"> | |
<viz:color r="112" g="13" b="142"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mchris4duke" target="tmcphers"> | |
<viz:color r="156" g="14" b="98"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="cballard285" target="tmcphers" weight="2.0"> | |
<viz:color r="157" g="14" b="97"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="footnotesrising" target="sgahistory"> | |
<viz:color r="167" g="14" b="87"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Ed_Baptist" target="tmcphers"> | |
<viz:color r="157" g="14" b="97"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="LauraLeibman" target="sgahistory"> | |
<viz:color r="105" g="13" b="149"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="l_rials" target="DrTonieshaT"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amwhisnant" target="UMD_MITH"> | |
<viz:color r="141" g="14" b="113"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amwhisnant" target="monicalmercado"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amwhisnant" target="chnm"> | |
<viz:color r="104" g="13" b="150"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jasonrhody" target="tmcphers"> | |
<viz:color r="179" g="14" b="75"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jasonrhody" target="NEH_ODH"> | |
<viz:color r="39" g="12" b="215"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jasonrhody" target="mukurtu"> | |
<viz:color r="105" g="13" b="149"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="justinbhorton" target="sgahistory"> | |
<viz:color r="167" g="14" b="87"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="sierraeckert" target="tmcphers" weight="2.0"> | |
<viz:color r="113" g="13" b="141"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Bookcharmer" target="trevormunoz"> | |
<viz:color r="111" g="13" b="143"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="TextileHive" target="trevormunoz"> | |
<viz:color r="111" g="13" b="143"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="lostlibrarian06" target="tmcphers" weight="3.0"> | |
<viz:color r="152" g="14" b="102"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="lostlibrarian06" target="schlabetsy"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="JedidahIslerPhD" target="DrTonieshaT"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="adr" target="tmcphers"> | |
<viz:color r="138" g="14" b="116"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="shepkeegs" target="tmcphers"> | |
<viz:color r="135" g="14" b="119"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="annaeveryday" target="DrTonieshaT"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="lissabrennan" target="DrTonieshaT"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="edsu" target="tmcphers"> | |
<viz:color r="151" g="14" b="103"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="UVicMakerLab" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="AVPreserve" target="eiratansey" weight="2.0"> | |
<viz:color r="93" g="13" b="161"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="shawndearn" target="readywriting" weight="2.0"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dradambanks" target="readywriting"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="ljvanwingerden" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="amelish" target="GeorgeOnline"> | |
<viz:color r="95" g="13" b="159"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Dbfuturist42" target="readywriting"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Francois_Ronan" target="readywriting"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Greene_DM" target="tmcphers"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="avaarndt" target="lizlosh"> | |
<viz:color r="6" g="12" b="248"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="avaarndt" target="profjuliette"> | |
<viz:color r="6" g="12" b="248"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DanBlackaby" target="lizlosh"> | |
<viz:color r="55" g="12" b="199"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DanBlackaby" target="profjuliette"> | |
<viz:color r="55" g="12" b="199"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DanBlackaby" target="avaarndt"> | |
<viz:color r="70" g="13" b="184"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mafersasa69" target="pwolsen"> | |
<viz:color r="82" g="13" b="172"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="gmecagni" target="JimMc_Grath" weight="2.0"> | |
<viz:color r="156" g="14" b="98"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="gmecagni" target="sjappleford" weight="2.0"> | |
<viz:color r="79" g="13" b="175"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="FranckJULIEN" target="stephabarn"> | |
<viz:color r="140" g="14" b="114"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="FranckJULIEN" target="TED_TALKS"> | |
<viz:color r="132" g="14" b="122"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="UVicHumanities" target="GeorgeOnline"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="robincamille" target="trevormunoz"> | |
<viz:color r="117" g="13" b="137"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="erinmaochu" target="stephabarn"> | |
<viz:color r="140" g="14" b="114"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="erinmaochu" target="TED_TALKS"> | |
<viz:color r="132" g="14" b="122"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="brettbobley" target="UMD_MITH"> | |
<viz:color r="99" g="13" b="155"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="brettbobley" target="chnm"> | |
<viz:color r="46" g="12" b="208"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="goldsminkle" target="HILT_MITH"> | |
<viz:color r="147" g="14" b="107"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="goldsminkle" target="thomasgpadilla"> | |
<viz:color r="94" g="13" b="160"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="emilyrnlds" target="ararebit" weight="2.0"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dennisRamirez" target="readywriting"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dennisRamirez" target="AnaSalter"> | |
<viz:color r="95" g="13" b="159"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dianadepasquale" target="JimMc_Grath"> | |
<viz:color r="110" g="13" b="144"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dianadepasquale" target="jenguiliano"> | |
<viz:color r="117" g="13" b="137"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="dianadepasquale" target="chronicle"> | |
<viz:color r="68" g="13" b="186"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="EpistolaryBrown" target="miriamkp"> | |
<viz:color r="148" g="14" b="106"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="EpistolaryBrown" target="RachelDeblinger"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="CarlSHess" target="readywriting" weight="2.0"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="briancroxall" target="readywriting"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="briancroxall" target="AnaSalter"> | |
<viz:color r="95" g="13" b="159"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="djchan08" target="readywriting"> | |
<viz:color r="166" g="14" b="88"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jcburgess25" target="UMD_MITH"> | |
<viz:color r="141" g="14" b="113"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jcburgess25" target="monicalmercado"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jcburgess25" target="chnm"> | |
<viz:color r="104" g="13" b="150"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="lubar" target="UMD_MITH"> | |
<viz:color r="141" g="14" b="113"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="lubar" target="monicalmercado"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="lubar" target="chnm"> | |
<viz:color r="104" g="13" b="150"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GreenfieldHWE" target="UMD_MITH"> | |
<viz:color r="141" g="14" b="113"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GreenfieldHWE" target="monicalmercado"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="GreenfieldHWE" target="chnm"> | |
<viz:color r="104" g="13" b="150"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jotis13" target="UMD_MITH"> | |
<viz:color r="141" g="14" b="113"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jotis13" target="monicalmercado"> | |
<viz:color r="108" g="13" b="146"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jotis13" target="chnm"> | |
<viz:color r="104" g="13" b="150"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="roopikarisam" target="readywriting"> | |
<viz:color r="155" g="14" b="99"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="roopikarisam" target="AnaSalter"> | |
<viz:color r="95" g="13" b="159"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DominiqueVanpee" target="UMD_MITH"> | |
<viz:color r="151" g="14" b="103"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DominiqueVanpee" target="chnm"> | |
<viz:color r="89" g="13" b="165"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DominiqueVanpee" target="brettbobley"> | |
<viz:color r="98" g="13" b="156"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DHandLib" target="UMD_MITH"> | |
<viz:color r="151" g="14" b="103"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DHandLib" target="chnm"> | |
<viz:color r="89" g="13" b="165"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DHandLib" target="brettbobley"> | |
<viz:color r="98" g="13" b="156"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DM2Europeana" target="johanoomen"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="gillesduffau" target="johanoomen" weight="2.0"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mcn_consulting" target="johanoomen"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="eCreativeEU" target="johanoomen" weight="2.0"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jmcclurken" target="UMD_MITH"> | |
<viz:color r="151" g="14" b="103"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jmcclurken" target="chnm"> | |
<viz:color r="90" g="13" b="164"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="jmcclurken" target="brettbobley"> | |
<viz:color r="98" g="13" b="156"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="kirschbombe" target="benwbrum" weight="2.0"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="DHInstitute" target="HILT_MITH" weight="2.0"> | |
<viz:color r="163" g="14" b="91"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="MarjSkiBike" target="readywriting" weight="2.0"> | |
<viz:color r="106" g="13" b="148"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HsaraH_89" target="HILT_MITH"> | |
<viz:color r="161" g="14" b="93"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="HsaraH_89" target="katebeavs"> | |
<viz:color r="45" g="12" b="209"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Rojas_Castro_A" target="HILT_MITH"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="Rojas_Castro_A" target="linhduned"> | |
<viz:color r="0" g="12" b="255"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="linhduned" target="HILT_MITH" weight="2.0"> | |
<viz:color r="162" g="14" b="92"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="OpenAssemblyEdu" target="AnaSalter"> | |
<viz:color r="164" g="14" b="90"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="akhurma" target="ProfHacker"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="akhurma" target="laurapasquini"> | |
<viz:color r="0" g="12" b="255"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="laurapasquini" target="ProfHacker" weight="2.0"> | |
<viz:color r="165" g="14" b="89"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="BU_BAArchAnth" target="Elijah_Meeks"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="felwert" target="Elijah_Meeks"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="eltonteb" target="Elijah_Meeks"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="christof77" target="Elijah_Meeks"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="laurenfklein" target="Elijah_Meeks"> | |
<viz:color r="75" g="13" b="179"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="laurenfklein" target="alanyliu"> | |
<viz:color r="0" g="12" b="255"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="heavysixer" target="Elijah_Meeks"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="yrochat" target="Elijah_Meeks"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
<edge source="mwidner" target="Elijah_Meeks"> | |
<viz:color r="76" g="13" b="178"></viz:color> | |
<attvalues></attvalues> | |
</edge> | |
</edges> | |
</graph> | |
</gexf> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment