D3.JS v5 画矩阵图

效果截图

index.html文件内容

// 基础参数
const matrixWidth = 650;
const matrixHeight = 650;
var margin = {
    top: 70,
    left: 70,
    right: 40,
    bottom: 40
};
var textFontSize = 10;
var linkObj = {}, nodeObj = {};

const matrixSvg = d3.select("#matrix-chart")
    .append("svg")
    .attr("viewBox", [0, 0, matrixWidth, matrixHeight]);

var matrixColor = d3.scaleOrdinal(d3.schemeCategory10);

index.js文件内容

辅助函数

/*
 * 矩阵方块
 * */
function Cube(obj) {
    matrixSvg.append("rect")
        .attr("class", "cube")
        .attr("id", `cube-` + obj.id)
        .attr("width", obj.w)
        .attr("height", obj.h)
        .attr("x", obj.x)
        .attr("y", obj.y)
        .style("fill", obj.color)
        .style("stroke", "#fff")
        .style("stroke-width", 1)
        ;
}

/*
 * 水平文本标签
 * */
function HText(obj) {
    matrixSvg.append("text")
        .attr("id", `text-${obj.id}-1`)
        .attr("class", `text`)
        .attr("dx", obj.x)
        .attr("dy", obj.y)
        .style("font-size", textFontSize)
        .style("text-anchor", "end")
        .text(obj.text);
}

/*
 * 垂直文本标签
 * */
function VText(obj) {
    matrixSvg.append("g")
        .attr("id", `box-${obj.id}-2`)
        .attr("transform", `translate(${obj.x},${obj.y})`)
        .append("text")
        .attr("class", `text`)
        .attr("id", `text-${obj.id}-2`)
        .style("font-size", textFontSize)
        .style("text-anchor", "start")
        .text(obj.text)
        .attr("transform", d => `rotate(${-90}) `)
        ;
}

图形函数


/*
 * 绘制矩阵图形
 * */
function MatrixChart(data) {
    var length = data.nodes.length;
    var CubeW = (matrixWidth - margin.left - margin.right) / length;
    var CubeH = (matrixHeight - margin.top - margin.bottom) / length;
    var cubeId = "";
    for (var i = 0; i < length; i++) {
        cubeId = `${data.nodes[i].id}-${data.nodes[0].id}`;
        Cube({
            id: cubeId,
            x: margin.left,
            y: i * CubeH + margin.top,
            w: CubeW,
            h: CubeH,
            color: CubeColor(cubeId)
        });
        var text = `${data.nodes[i].itsc}`;
        HText({
            id: data.nodes[i].id,
            x: margin.left - 10,
            y: i * CubeH + margin.top + CubeH - 2,
            text: text
        });
        VText({
            id: data.nodes[i].id,
            x: i * CubeW + margin.left + CubeW - 2,
            y: margin.top - 10,
            text: text
        });
        for (var j = 1; j < length; j++) {
            cubeId = `${data.nodes[i].id}-${data.nodes[j].id}`;
            Cube({
                id: cubeId,
                x: j * CubeW + margin.left,
                y: i * CubeH + margin.top,
                w: CubeW,
                h: CubeH,
                color: CubeColor(cubeId)
            });
        }
    }
}

加载数据

/*
 * 加载数据
 * */
d3.json("data.json").then(function (res) {
    var data = {
        edges: [],
        nodes: []
    }
    res.nodes.forEach(function (item) {
        if (nodeObj[item.id] === undefined) {
            nodeObj[item.id] = item;
        }
        data.nodes.push(item);
    });
    res.edges.forEach(function (item) {
        data.edges.push(item);
        linkObj[`${item.source}-${item.target}`] = item;
    });
    MatrixChart(data);
});

data.json

{
  "edges": [
    {
      "source": 1,
      "target": 276,
      "publications": [
        {
          "pubId": "1783.1-46597",
          "year": 2011
        },
        {
          "pubId": "1783.1-66394",
          "year": 2014
        },
        {
          "pubId": "1783.1-44134",
          "year": 2011
        },
        {
          "pubId": "1783.1-35264",
          "year": 2011
        }
      ]
    },
    {
      "source": 1,
      "target": 292,
      "publications": [
        {
          "pubId": "1783.1-31091",
          "year": 2009
        },
        {
          "pubId": "1783.1-21201",
          "year": 2005
        },
        {
          "pubId": "1783.1-39862",
          "year": 2010
        },
        {
          "pubId": "1783.1-12001",
          "year": 2006
        },
        {
          "pubId": "1783.1-12934",
          "year": 2006
        },
        {
          "pubId": "1783.1-65576",
          "year": 2005
        },
        {
          "pubId": "1783.1-7601",
          "year": 2011
        }
      ]
    },
    {
      "source": 1,
      "target": 313,
      "publications": [
        {
          "pubId": "1783.1-31091",
          "year": 2009
        },
        {
          "pubId": "1783.1-65576",
          "year": 2005
        },
        {
          "pubId": "1783.1-35448",
          "year": 2011
        }
      ]
    },
    {
      "source": 1,
      "target": 251,
      "publications": [
        {
          "pubId": "1783.1-65576",
          "year": 2005
        },
        {
          "pubId": "1783.1-31091",
          "year": 2009
        },
        {
          "pubId": "1783.1-21201",
          "year": 2005
        }
      ]
    },
    {
      "source": 1,
      "target": 319,
      "publications": [
        {
          "pubId": "1783.1-6557",
          "year": 2009
        }
      ]
    },
    {
      "source": 1,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-31091",
          "year": 2009
        },
        {
          "pubId": "1783.1-65576",
          "year": 2005
        },
        {
          "pubId": "1783.1-63895",
          "year": 2014
        },
        {
          "pubId": "1783.1-55515",
          "year": 2013
        },
        {
          "pubId": "1783.1-52580",
          "year": 2012
        },
        {
          "pubId": "1783.1-39860",
          "year": 2010
        },
        {
          "pubId": "1783.1-65839",
          "year": 2014
        },
        {
          "pubId": "1783.1-58433",
          "year": 2013
        }
      ]
    },
    {
      "source": 1,
      "target": 204,
      "publications": [
        {
          "pubId": "1783.1-45105",
          "year": 2007
        }
      ]
    },
    {
      "source": 3,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-62595",
          "year": 2014
        },
        {
          "pubId": "1783.1-8177",
          "year": 2012
        },
        {
          "pubId": "1783.1-57545",
          "year": 2012
        },
        {
          "pubId": "1783.1-57550",
          "year": 2012
        }
      ]
    },
    {
      "source": 3,
      "target": 292,
      "publications": [
        {
          "pubId": "1783.1-57543",
          "year": 2013
        },
        {
          "pubId": "1783.1-51805",
          "year": 2012
        },
        {
          "pubId": "1783.1-44306",
          "year": 2011
        }
      ]
    },
    {
      "source": 3,
      "target": 341,
      "publications": [
        {
          "pubId": "1783.1-18647",
          "year": 2009
        },
        {
          "pubId": "1783.1-20296",
          "year": 2006
        },
        {
          "pubId": "1783.1-22399",
          "year": 2003
        },
        {
          "pubId": "1783.1-46147",
          "year": 2005
        },
        {
          "pubId": "1783.1-47984",
          "year": 2005
        },
        {
          "pubId": "1783.1-10479",
          "year": 2005
        },
        {
          "pubId": "1783.1-38124",
          "year": 2004
        },
        {
          "pubId": "1783.1-37644",
          "year": 2003
        },
        {
          "pubId": "1783.1-11095",
          "year": 2007
        }
      ]
    },
    {
      "source": 3,
      "target": 204,
      "publications": [
        {
          "pubId": "1783.1-8182",
          "year": 2012
        },
        {
          "pubId": "1783.1-17848",
          "year": 2009
        },
        {
          "pubId": "1783.1-16969",
          "year": 2001
        },
        {
          "pubId": "1783.1-25835",
          "year": 1999
        },
        {
          "pubId": "1783.1-30325",
          "year": 1999
        },
        {
          "pubId": "1783.1-29450",
          "year": 1996
        },
        {
          "pubId": "1783.1-62595",
          "year": 2014
        },
        {
          "pubId": "1783.1-8177",
          "year": 2012
        },
        {
          "pubId": "1783.1-57545",
          "year": 2012
        },
        {
          "pubId": "1783.1-57550",
          "year": 2012
        },
        {
          "pubId": "1783.1-45705",
          "year": 2010
        },
        {
          "pubId": "1783.1-38726",
          "year": 2010
        },
        {
          "pubId": "1783.1-27418",
          "year": 2010
        },
        {
          "pubId": "1783.1-38196",
          "year": 1999
        },
        {
          "pubId": "1783.1-62607",
          "year": 1999
        },
        {
          "pubId": "1783.1-42691",
          "year": 1997
        },
        {
          "pubId": "1783.1-38270",
          "year": 1997
        },
        {
          "pubId": "1783.1-62609",
          "year": 1997
        },
        {
          "pubId": "1783.1-62613",
          "year": 1997
        },
        {
          "pubId": "1783.1-38320",
          "year": 1995
        },
        {
          "pubId": "1783.1-62590",
          "year": 2013
        },
        {
          "pubId": "1783.1-62593",
          "year": 2000
        }
      ]
    },
    {
      "source": 3,
      "target": 141,
      "publications": [
        {
          "pubId": "1783.1-30648",
          "year": 2000
        },
        {
          "pubId": "1783.1-41050",
          "year": 2000
        },
        {
          "pubId": "1783.1-38249",
          "year": 1997
        }
      ]
    },
    {
      "source": 3,
      "target": 336,
      "publications": [
        {
          "pubId": "1783.1-56537",
          "year": 2013
        },
        {
          "pubId": "1783.1-57540",
          "year": 2012
        },
        {
          "pubId": "1783.1-34915",
          "year": 2011
        },
        {
          "pubId": "1783.1-46096",
          "year": 2010
        },
        {
          "pubId": "1783.1-58404",
          "year": 2013
        },
        {
          "pubId": "1783.1-51805",
          "year": 2012
        },
        {
          "pubId": "1783.1-57548",
          "year": 2012
        },
        {
          "pubId": "1783.1-39461",
          "year": 2010
        },
        {
          "pubId": "1783.1-48169",
          "year": 2010
        }
      ]
    },
    {
      "source": 3,
      "target": 19,
      "publications": [
        {
          "pubId": "1783.1-5993",
          "year": 2008
        }
      ]
    },
    {
      "source": 19,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-59699",
          "year": 2013
        },
        {
          "pubId": "1783.1-35458",
          "year": 2011
        },
        {
          "pubId": "1783.1-8166",
          "year": 2011
        }
      ]
    },
    {
      "source": 19,
      "target": 65,
      "publications": [
        {
          "pubId": "1783.1-2277",
          "year": 2005
        },
        {
          "pubId": "1783.1-173",
          "year": 2003
        }
      ]
    },
    {
      "source": 19,
      "target": 384,
      "publications": [
        {
          "pubId": "1783.1-64578",
          "year": 2014
        },
        {
          "pubId": "1783.1-58455",
          "year": 2013
        },
        {
          "pubId": "1783.1-57090",
          "year": 2012
        },
        {
          "pubId": "1783.1-44444",
          "year": 2012
        },
        {
          "pubId": "1783.1-8169",
          "year": 2011
        },
        {
          "pubId": "1783.1-34770",
          "year": 2011
        },
        {
          "pubId": "1783.1-59075",
          "year": 2011
        },
        {
          "pubId": "1783.1-17243",
          "year": 2010
        },
        {
          "pubId": "1783.1-53019",
          "year": 2010
        },
        {
          "pubId": "1783.1-17786",
          "year": 2009
        },
        {
          "pubId": "1783.1-8175",
          "year": 2011
        },
        {
          "pubId": "1783.1-43746",
          "year": 2009
        },
        {
          "pubId": "1783.1-5994",
          "year": 2009
        },
        {
          "pubId": "1783.1-5995",
          "year": 2009
        },
        {
          "pubId": "1783.1-5996",
          "year": 2009
        },
        {
          "pubId": "1783.1-3235",
          "year": 2008
        },
        {
          "pubId": "1783.1-3245",
          "year": 2007
        }
      ]
    },
    {
      "source": 20,
      "target": 310,
      "publications": [
        {
          "pubId": "1783.1-66179",
          "year": 2015
        },
        {
          "pubId": "1783.1-44422",
          "year": 2011
        },
        {
          "pubId": "1783.1-35282",
          "year": 2011
        }
      ]
    },
    {
      "source": 20,
      "target": 174,
      "publications": [
        {
          "pubId": "1783.1-3201",
          "year": 2008
        }
      ]
    },
    {
      "source": 20,
      "target": 107,
      "publications": [
        {
          "pubId": "1783.1-47444",
          "year": 2008
        }
      ]
    },
    {
      "source": 20,
      "target": 103,
      "publications": [
        {
          "pubId": "1783.1-47444",
          "year": 2008
        }
      ]
    },
    {
      "source": 21,
      "target": 209,
      "publications": [
        {
          "pubId": "1783.1-59901",
          "year": 2013
        }
      ]
    },
    {
      "source": 21,
      "target": 174,
      "publications": [
        {
          "pubId": "1783.1-57158",
          "year": 2013
        },
        {
          "pubId": "1783.1-56451",
          "year": 2012
        },
        {
          "pubId": "1783.1-39591",
          "year": 2007
        }
      ]
    },
    {
      "source": 35,
      "target": 238,
      "publications": [
        {
          "pubId": "1783.1-62125",
          "year": 2013
        },
        {
          "pubId": "1783.1-47905",
          "year": 2008
        },
        {
          "pubId": "1783.1-37299",
          "year": 2007
        },
        {
          "pubId": "1783.1-16916",
          "year": 2005
        },
        {
          "pubId": "1783.1-11116",
          "year": 2007
        },
        {
          "pubId": "1783.1-9971",
          "year": 2007
        },
        {
          "pubId": "1783.1-53955",
          "year": 2006
        },
        {
          "pubId": "1783.1-37791",
          "year": 2006
        },
        {
          "pubId": "1783.1-15463",
          "year": 2006
        },
        {
          "pubId": "1783.1-9288",
          "year": 2006
        },
        {
          "pubId": "1783.1-57440",
          "year": 2012
        },
        {
          "pubId": "1783.1-39629",
          "year": 2010
        },
        {
          "pubId": "1783.1-12820",
          "year": 2006
        }
      ]
    },
    {
      "source": 35,
      "target": 204,
      "publications": [
        {
          "pubId": "1783.1-39629",
          "year": 2010
        }
      ]
    },
    {
      "source": 40,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-57240",
          "year": 2012
        }
      ]
    },
    {
      "source": 40,
      "target": 65,
      "publications": [
        {
          "pubId": "1783.1-40938",
          "year": 1990
        },
        {
          "pubId": "1783.1-40944",
          "year": 1983
        },
        {
          "pubId": "1783.1-41134",
          "year": 1994
        },
        {
          "pubId": "1783.1-40951",
          "year": 1985
        }
      ]
    },
    {
      "source": 40,
      "target": 156,
      "publications": [
        {
          "pubId": "1783.1-51710",
          "year": 2012
        },
        {
          "pubId": "1783.1-6583",
          "year": 2008
        },
        {
          "pubId": "1783.1-3221",
          "year": 2007
        },
        {
          "pubId": "1783.1-10122",
          "year": 2007
        },
        {
          "pubId": "1783.1-7467",
          "year": 2006
        },
        {
          "pubId": "1783.1-2648",
          "year": 2006
        },
        {
          "pubId": "1783.1-17418",
          "year": 2010
        }
      ]
    },
    {
      "source": 40,
      "target": 313,
      "publications": [
        {
          "pubId": "1783.1-51824",
          "year": 2004
        }
      ]
    },
    {
      "source": 54,
      "target": 141,
      "publications": [
        {
          "pubId": "1783.1-467",
          "year": 2000
        },
        {
          "pubId": "1783.1-57290",
          "year": 1999
        },
        {
          "pubId": "1783.1-2117",
          "year": 1998
        },
        {
          "pubId": "1783.1-2118",
          "year": 1998
        }
      ]
    },
    {
      "source": 54,
      "target": 237,
      "publications": [
        {
          "pubId": "1783.1-468",
          "year": 1999
        }
      ]
    },
    {
      "source": 65,
      "target": 271,
      "publications": [
        {
          "pubId": "1783.1-17734",
          "year": 1999
        }
      ]
    },
    {
      "source": 65,
      "target": 360,
      "publications": [
        {
          "pubId": "1783.1-51739",
          "year": 2012
        },
        {
          "pubId": "1783.1-6003",
          "year": 2008
        },
        {
          "pubId": "1783.1-3239",
          "year": 2007
        },
        {
          "pubId": "1783.1-46651",
          "year": 2006
        },
        {
          "pubId": "1783.1-48002",
          "year": 2006
        },
        {
          "pubId": "1783.1-21541",
          "year": 2004
        },
        {
          "pubId": "1783.1-12317",
          "year": 2007
        },
        {
          "pubId": "1783.1-11705",
          "year": 2007
        },
        {
          "pubId": "1783.1-14778",
          "year": 2004
        }
      ]
    },
    {
      "source": 65,
      "target": 324,
      "publications": [
        {
          "pubId": "1783.1-37544",
          "year": 2004
        },
        {
          "pubId": "1783.1-57818",
          "year": 2013
        },
        {
          "pubId": "1783.1-51739",
          "year": 2012
        },
        {
          "pubId": "1783.1-45942",
          "year": 2011
        },
        {
          "pubId": "1783.1-39668",
          "year": 2010
        },
        {
          "pubId": "1783.1-6003",
          "year": 2008
        },
        {
          "pubId": "1783.1-57822",
          "year": 2012
        },
        {
          "pubId": "1783.1-35447",
          "year": 2011
        },
        {
          "pubId": "1783.1-39771",
          "year": 2011
        },
        {
          "pubId": "1783.1-39674",
          "year": 2010
        },
        {
          "pubId": "1783.1-6567",
          "year": 2010
        },
        {
          "pubId": "1783.1-12317",
          "year": 2007
        }
      ]
    },
    {
      "source": 65,
      "target": 251,
      "publications": [
        {
          "pubId": "1783.1-2901",
          "year": 2006
        },
        {
          "pubId": "1783.1-28280",
          "year": 2004
        },
        {
          "pubId": "1783.1-11034",
          "year": 2006
        },
        {
          "pubId": "1783.1-31624",
          "year": 2006
        }
      ]
    },
    {
      "source": 65,
      "target": 141,
      "publications": [
        {
          "pubId": "1783.1-22853",
          "year": 2003
        },
        {
          "pubId": "1783.1-3163",
          "year": 2002
        },
        {
          "pubId": "1783.1-38060",
          "year": 2002
        },
        {
          "pubId": "1783.1-38095",
          "year": 2002
        }
      ]
    },
    {
      "source": 67,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-55958",
          "year": 2013
        },
        {
          "pubId": "1783.1-57886",
          "year": 2012
        },
        {
          "pubId": "1783.1-8168",
          "year": 2011
        },
        {
          "pubId": "1783.1-8923",
          "year": 2008
        },
        {
          "pubId": "1783.1-65093",
          "year": 2014
        },
        {
          "pubId": "1783.1-42402",
          "year": 2007
        }
      ]
    },
    {
      "source": 67,
      "target": 209,
      "publications": [
        {
          "pubId": "1783.1-6161",
          "year": 2008
        }
      ]
    },
    {
      "source": 67,
      "target": 360,
      "publications": [
        {
          "pubId": "1783.1-8172",
          "year": 2011
        }
      ]
    },
    {
      "source": 83,
      "target": 251,
      "publications": [
        {
          "pubId": "1783.1-47947",
          "year": 2009
        },
        {
          "pubId": "1783.1-19469",
          "year": 2009
        },
        {
          "pubId": "1783.1-8445",
          "year": 2009
        },
        {
          "pubId": "1783.1-3279",
          "year": 2008
        },
        {
          "pubId": "1783.1-32246",
          "year": 2007
        },
        {
          "pubId": "1783.1-27571",
          "year": 2007
        }
      ]
    },
    {
      "source": 103,
      "target": 319,
      "publications": [
        {
          "pubId": "1783.1-20195",
          "year": 2006
        },
        {
          "pubId": "1783.1-42386",
          "year": 2006
        }
      ]
    },
    {
      "source": 103,
      "target": 156,
      "publications": [
        {
          "pubId": "1783.1-7466",
          "year": 2006
        }
      ]
    },
    {
      "source": 109,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-39874",
          "year": 2010
        },
        {
          "pubId": "1783.1-18377",
          "year": 2008
        },
        {
          "pubId": "1783.1-47554",
          "year": 2010
        }
      ]
    },
    {
      "source": 113,
      "target": 390,
      "publications": [
        {
          "pubId": "1783.1-6546",
          "year": 2009
        },
        {
          "pubId": "1783.1-2935",
          "year": 2006
        }
      ]
    },
    {
      "source": 113,
      "target": 156,
      "publications": [
        {
          "pubId": "1783.1-3176",
          "year": 2008
        },
        {
          "pubId": "1783.1-3353",
          "year": 2007
        },
        {
          "pubId": "1783.1-2631",
          "year": 2006
        },
        {
          "pubId": "1783.1-29943",
          "year": 1997
        },
        {
          "pubId": "1783.1-1831",
          "year": 1997
        },
        {
          "pubId": "1783.1-1832",
          "year": 1996
        },
        {
          "pubId": "1783.1-2412",
          "year": 2004
        },
        {
          "pubId": "1783.1-2483",
          "year": 2004
        },
        {
          "pubId": "1783.1-2481",
          "year": 2004
        },
        {
          "pubId": "1783.1-12662",
          "year": 2003
        },
        {
          "pubId": "1783.1-41052",
          "year": 1996
        },
        {
          "pubId": "1783.1-41061",
          "year": 1996
        },
        {
          "pubId": "1783.1-37851",
          "year": 1995
        },
        {
          "pubId": "1783.1-41053",
          "year": 1994
        },
        {
          "pubId": "1783.1-41063",
          "year": 1993
        },
        {
          "pubId": "1783.1-12649",
          "year": 2006
        }
      ]
    },
    {
      "source": 113,
      "target": 313,
      "publications": [
        {
          "pubId": "1783.1-39549",
          "year": 2011
        },
        {
          "pubId": "1783.1-20144",
          "year": 2006
        },
        {
          "pubId": "1783.1-64507",
          "year": 2013
        },
        {
          "pubId": "1783.1-6830",
          "year": 2009
        },
        {
          "pubId": "1783.1-20102",
          "year": 2008
        },
        {
          "pubId": "1783.1-27525",
          "year": 2008
        },
        {
          "pubId": "1783.1-18452",
          "year": 2007
        },
        {
          "pubId": "1783.1-47423",
          "year": 2005
        }
      ]
    },
    {
      "source": 141,
      "target": 209,
      "publications": [
        {
          "pubId": "1783.1-63922",
          "year": 2014
        },
        {
          "pubId": "1783.1-55310",
          "year": 2013
        },
        {
          "pubId": "1783.1-64475",
          "year": 2014
        }
      ]
    },
    {
      "source": 141,
      "target": 292,
      "publications": [
        {
          "pubId": "1783.1-46092",
          "year": 2004
        }
      ]
    },
    {
      "source": 141,
      "target": 336,
      "publications": [
        {
          "pubId": "1783.1-56531",
          "year": 2012
        },
        {
          "pubId": "1783.1-57988",
          "year": 2012
        },
        {
          "pubId": "1783.1-35045",
          "year": 2011
        },
        {
          "pubId": "1783.1-39847",
          "year": 2010
        },
        {
          "pubId": "1783.1-44848",
          "year": 2008
        },
        {
          "pubId": "1783.1-3346",
          "year": 2008
        },
        {
          "pubId": "1783.1-3337",
          "year": 2007
        },
        {
          "pubId": "1783.1-3333",
          "year": 2007
        },
        {
          "pubId": "1783.1-19876",
          "year": 2006
        },
        {
          "pubId": "1783.1-19522",
          "year": 2006
        },
        {
          "pubId": "1783.1-47973",
          "year": 2006
        },
        {
          "pubId": "1783.1-20650",
          "year": 2005
        },
        {
          "pubId": "1783.1-12619",
          "year": 2005
        },
        {
          "pubId": "1783.1-21160",
          "year": 2005
        },
        {
          "pubId": "1783.1-22142",
          "year": 2003
        },
        {
          "pubId": "1783.1-45161",
          "year": 2003
        },
        {
          "pubId": "1783.1-14128",
          "year": 2002
        },
        {
          "pubId": "1783.1-61303",
          "year": 2014
        },
        {
          "pubId": "1783.1-60868",
          "year": 2013
        },
        {
          "pubId": "1783.1-55203",
          "year": 2012
        },
        {
          "pubId": "1783.1-47799",
          "year": 2011
        },
        {
          "pubId": "1783.1-65937",
          "year": 2011
        },
        {
          "pubId": "1783.1-17176",
          "year": 2010
        },
        {
          "pubId": "1783.1-45809",
          "year": 2010
        },
        {
          "pubId": "1783.1-6821",
          "year": 2010
        },
        {
          "pubId": "1783.1-39235",
          "year": 2005
        },
        {
          "pubId": "1783.1-37098",
          "year": 2005
        },
        {
          "pubId": "1783.1-9034",
          "year": 2005
        },
        {
          "pubId": "1783.1-45396",
          "year": 2004
        },
        {
          "pubId": "1783.1-3168",
          "year": 2003
        },
        {
          "pubId": "1783.1-37400",
          "year": 2002
        },
        {
          "pubId": "1783.1-37033",
          "year": 2002
        }
      ]
    },
    {
      "source": 141,
      "target": 313,
      "publications": [
        {
          "pubId": "1783.1-35492",
          "year": 2011
        },
        {
          "pubId": "1783.1-35314",
          "year": 2011
        },
        {
          "pubId": "1783.1-16847",
          "year": 2009
        },
        {
          "pubId": "1783.1-19235",
          "year": 2009
        },
        {
          "pubId": "1783.1-42524",
          "year": 1998
        }
      ]
    },
    {
      "source": 141,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-55941",
          "year": 2012
        }
      ]
    },
    {
      "source": 156,
      "target": 271,
      "publications": [
        {
          "pubId": "1783.1-38302",
          "year": 2004
        },
        {
          "pubId": "1783.1-9894",
          "year": 2002
        },
        {
          "pubId": "1783.1-43924",
          "year": 2000
        }
      ]
    },
    {
      "source": 156,
      "target": 174,
      "publications": [
        {
          "pubId": "1783.1-37859",
          "year": 2008
        },
        {
          "pubId": "1783.1-6590",
          "year": 2008
        },
        {
          "pubId": "1783.1-6589",
          "year": 2008
        }
      ]
    },
    {
      "source": 156,
      "target": 313,
      "publications": [
        {
          "pubId": "1783.1-17175",
          "year": 2010
        },
        {
          "pubId": "1783.1-45513",
          "year": 2006
        }
      ]
    },
    {
      "source": 174,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-42014",
          "year": 2000
        }
      ]
    },
    {
      "source": 204,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-62595",
          "year": 2014
        },
        {
          "pubId": "1783.1-60960",
          "year": 2013
        },
        {
          "pubId": "1783.1-61105",
          "year": 2013
        },
        {
          "pubId": "1783.1-8177",
          "year": 2012
        },
        {
          "pubId": "1783.1-57545",
          "year": 2012
        },
        {
          "pubId": "1783.1-57550",
          "year": 2012
        },
        {
          "pubId": "1783.1-62590",
          "year": 2013
        }
      ]
    },
    {
      "source": 204,
      "target": 238,
      "publications": [
        {
          "pubId": "1783.1-39629",
          "year": 2010
        }
      ]
    },
    {
      "source": 209,
      "target": 292,
      "publications": [
        {
          "pubId": "1783.1-61678",
          "year": 2014
        },
        {
          "pubId": "1783.1-64821",
          "year": 2014
        },
        {
          "pubId": "1783.1-56760",
          "year": 2012
        },
        {
          "pubId": "1783.1-38792",
          "year": 2010
        },
        {
          "pubId": "1783.1-55255",
          "year": 2013
        },
        {
          "pubId": "1783.1-57065",
          "year": 2012
        },
        {
          "pubId": "1783.1-35167",
          "year": 2011
        },
        {
          "pubId": "1783.1-39255",
          "year": 2011
        },
        {
          "pubId": "1783.1-35437",
          "year": 2010
        },
        {
          "pubId": "1783.1-27521",
          "year": 2008
        }
      ]
    },
    {
      "source": 209,
      "target": 333,
      "publications": [
        {
          "pubId": "1783.1-46416",
          "year": 2011
        },
        {
          "pubId": "1783.1-17237",
          "year": 2010
        },
        {
          "pubId": "1783.1-47413",
          "year": 2009
        },
        {
          "pubId": "1783.1-41841",
          "year": 2008
        }
      ]
    },
    {
      "source": 209,
      "target": 336,
      "publications": [
        {
          "pubId": "1783.1-6279",
          "year": 2008
        },
        {
          "pubId": "1783.1-37035",
          "year": 2007
        },
        {
          "pubId": "1783.1-3338",
          "year": 2007
        }
      ]
    },
    {
      "source": 209,
      "target": 338,
      "publications": [
        {
          "pubId": "1783.1-34695",
          "year": 2011
        },
        {
          "pubId": "1783.1-17033",
          "year": 2010
        },
        {
          "pubId": "1783.1-22924",
          "year": 2008
        }
      ]
    },
    {
      "source": 209,
      "target": 319,
      "publications": [
        {
          "pubId": "1783.1-61078",
          "year": 2013
        }
      ]
    },
    {
      "source": 209,
      "target": 210,
      "publications": [
        {
          "pubId": "1783.1-58452",
          "year": 2013
        },
        {
          "pubId": "1783.1-57068",
          "year": 2012
        }
      ]
    },
    {
      "source": 209,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-56760",
          "year": 2012
        },
        {
          "pubId": "1783.1-56761",
          "year": 2012
        },
        {
          "pubId": "1783.1-56841",
          "year": 2012
        },
        {
          "pubId": "1783.1-38792",
          "year": 2010
        },
        {
          "pubId": "1783.1-6282",
          "year": 2009
        },
        {
          "pubId": "1783.1-23802",
          "year": 2008
        },
        {
          "pubId": "1783.1-6278",
          "year": 2008
        },
        {
          "pubId": "1783.1-6279",
          "year": 2008
        },
        {
          "pubId": "1783.1-18785",
          "year": 2007
        },
        {
          "pubId": "1783.1-27521",
          "year": 2008
        },
        {
          "pubId": "1783.1-27530",
          "year": 2008
        },
        {
          "pubId": "1783.1-2920",
          "year": 2007
        },
        {
          "pubId": "1783.1-9575",
          "year": 2007
        },
        {
          "pubId": "1783.1-31536",
          "year": 2006
        },
        {
          "pubId": "1783.1-2896",
          "year": 2006
        },
        {
          "pubId": "1783.1-2899",
          "year": 2006
        },
        {
          "pubId": "1783.1-64427",
          "year": 2014
        },
        {
          "pubId": "1783.1-65104",
          "year": 2014
        }
      ]
    },
    {
      "source": 209,
      "target": 251,
      "publications": [
        {
          "pubId": "1783.1-31536",
          "year": 2006
        }
      ]
    },
    {
      "source": 210,
      "target": 221,
      "publications": [
        {
          "pubId": "1783.1-54955",
          "year": 2011
        }
      ]
    },
    {
      "source": 210,
      "target": 338,
      "publications": [
        {
          "pubId": "1783.1-59526",
          "year": 2014
        }
      ]
    },
    {
      "source": 221,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-44509",
          "year": 2011
        },
        {
          "pubId": "1783.1-46571",
          "year": 2011
        }
      ]
    },
    {
      "source": 221,
      "target": 310,
      "publications": [
        {
          "pubId": "1783.1-48552",
          "year": 2006
        },
        {
          "pubId": "1783.1-48611",
          "year": 2005
        }
      ]
    },
    {
      "source": 238,
      "target": 390,
      "publications": [
        {
          "pubId": "1783.1-37791",
          "year": 2006
        }
      ]
    },
    {
      "source": 251,
      "target": 292,
      "publications": [
        {
          "pubId": "1783.1-59677",
          "year": 2013
        },
        {
          "pubId": "1783.1-35286",
          "year": 2011
        },
        {
          "pubId": "1783.1-31091",
          "year": 2009
        },
        {
          "pubId": "1783.1-18527",
          "year": 2007
        },
        {
          "pubId": "1783.1-21201",
          "year": 2005
        },
        {
          "pubId": "1783.1-57674",
          "year": 2012
        },
        {
          "pubId": "1783.1-44054",
          "year": 2011
        },
        {
          "pubId": "1783.1-37608",
          "year": 2005
        },
        {
          "pubId": "1783.1-37367",
          "year": 2005
        },
        {
          "pubId": "1783.1-11635",
          "year": 2004
        },
        {
          "pubId": "1783.1-28445",
          "year": 2004
        },
        {
          "pubId": "1783.1-65576",
          "year": 2005
        }
      ]
    },
    {
      "source": 251,
      "target": 333,
      "publications": [
        {
          "pubId": "1783.1-39449",
          "year": 2010
        },
        {
          "pubId": "1783.1-39153",
          "year": 2010
        },
        {
          "pubId": "1783.1-39746",
          "year": 2009
        }
      ]
    },
    {
      "source": 251,
      "target": 313,
      "publications": [
        {
          "pubId": "1783.1-65576",
          "year": 2005
        },
        {
          "pubId": "1783.1-31091",
          "year": 2009
        }
      ]
    },
    {
      "source": 251,
      "target": 319,
      "publications": [
        {
          "pubId": "1783.1-59677",
          "year": 2013
        },
        {
          "pubId": "1783.1-44054",
          "year": 2011
        }
      ]
    },
    {
      "source": 251,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-31091",
          "year": 2009
        },
        {
          "pubId": "1783.1-21146",
          "year": 2008
        },
        {
          "pubId": "1783.1-27563",
          "year": 2007
        },
        {
          "pubId": "1783.1-31536",
          "year": 2006
        },
        {
          "pubId": "1783.1-65576",
          "year": 2005
        }
      ]
    },
    {
      "source": 271,
      "target": 313,
      "publications": [
        {
          "pubId": "1783.1-20433",
          "year": 2005
        }
      ]
    },
    {
      "source": 276,
      "target": 333,
      "publications": [
        {
          "pubId": "1783.1-35299",
          "year": 2011
        }
      ]
    },
    {
      "source": 292,
      "target": 336,
      "publications": [
        {
          "pubId": "1783.1-61319",
          "year": 2014
        },
        {
          "pubId": "1783.1-59294",
          "year": 2013
        },
        {
          "pubId": "1783.1-52778",
          "year": 2012
        },
        {
          "pubId": "1783.1-57641",
          "year": 2012
        },
        {
          "pubId": "1783.1-6704",
          "year": 2010
        },
        {
          "pubId": "1783.1-18714",
          "year": 2007
        },
        {
          "pubId": "1783.1-64393",
          "year": 2014
        },
        {
          "pubId": "1783.1-65027",
          "year": 2014
        },
        {
          "pubId": "1783.1-64519",
          "year": 2014
        },
        {
          "pubId": "1783.1-58400",
          "year": 2013
        },
        {
          "pubId": "1783.1-51805",
          "year": 2012
        },
        {
          "pubId": "1783.1-51812",
          "year": 2012
        },
        {
          "pubId": "1783.1-38689",
          "year": 2010
        },
        {
          "pubId": "1783.1-17015",
          "year": 2010
        },
        {
          "pubId": "1783.1-6700",
          "year": 2010
        },
        {
          "pubId": "1783.1-45800",
          "year": 2008
        },
        {
          "pubId": "1783.1-3254",
          "year": 2008
        },
        {
          "pubId": "1783.1-47438",
          "year": 2007
        },
        {
          "pubId": "1783.1-37609",
          "year": 2005
        }
      ]
    },
    {
      "source": 292,
      "target": 313,
      "publications": [
        {
          "pubId": "1783.1-44373",
          "year": 2012
        },
        {
          "pubId": "1783.1-31091",
          "year": 2009
        },
        {
          "pubId": "1783.1-18312",
          "year": 2008
        },
        {
          "pubId": "1783.1-38100",
          "year": 2005
        },
        {
          "pubId": "1783.1-65576",
          "year": 2005
        }
      ]
    },
    {
      "source": 292,
      "target": 319,
      "publications": [
        {
          "pubId": "1783.1-61689",
          "year": 2014
        },
        {
          "pubId": "1783.1-59677",
          "year": 2013
        },
        {
          "pubId": "1783.1-55826",
          "year": 2012
        },
        {
          "pubId": "1783.1-60435",
          "year": 2014
        },
        {
          "pubId": "1783.1-64197",
          "year": 2014
        },
        {
          "pubId": "1783.1-57644",
          "year": 2013
        },
        {
          "pubId": "1783.1-55680",
          "year": 2012
        },
        {
          "pubId": "1783.1-44054",
          "year": 2011
        },
        {
          "pubId": "1783.1-44078",
          "year": 2011
        },
        {
          "pubId": "1783.1-35252",
          "year": 2011
        }
      ]
    },
    {
      "source": 292,
      "target": 299,
      "publications": [
        {
          "pubId": "1783.1-61464",
          "year": 2014
        },
        {
          "pubId": "1783.1-64324",
          "year": 2014
        },
        {
          "pubId": "1783.1-63813",
          "year": 2014
        },
        {
          "pubId": "1783.1-59294",
          "year": 2013
        },
        {
          "pubId": "1783.1-55325",
          "year": 2013
        },
        {
          "pubId": "1783.1-55366",
          "year": 2013
        },
        {
          "pubId": "1783.1-55438",
          "year": 2013
        },
        {
          "pubId": "1783.1-44219",
          "year": 2012
        },
        {
          "pubId": "1783.1-44452",
          "year": 2012
        },
        {
          "pubId": "1783.1-52778",
          "year": 2012
        },
        {
          "pubId": "1783.1-51597",
          "year": 2012
        },
        {
          "pubId": "1783.1-56760",
          "year": 2012
        },
        {
          "pubId": "1783.1-57670",
          "year": 2012
        },
        {
          "pubId": "1783.1-57641",
          "year": 2012
        },
        {
          "pubId": "1783.1-45762",
          "year": 2011
        },
        {
          "pubId": "1783.1-35095",
          "year": 2011
        },
        {
          "pubId": "1783.1-40085",
          "year": 2010
        },
        {
          "pubId": "1783.1-38792",
          "year": 2010
        },
        {
          "pubId": "1783.1-17403",
          "year": 2010
        },
        {
          "pubId": "1783.1-6704",
          "year": 2010
        },
        {
          "pubId": "1783.1-31091",
          "year": 2009
        },
        {
          "pubId": "1783.1-2913",
          "year": 2009
        },
        {
          "pubId": "1783.1-6276",
          "year": 2009
        },
        {
          "pubId": "1783.1-26302",
          "year": 2008
        },
        {
          "pubId": "1783.1-6277",
          "year": 2008
        },
        {
          "pubId": "1783.1-45394",
          "year": 2007
        },
        {
          "pubId": "1783.1-34035",
          "year": 2007
        },
        {
          "pubId": "1783.1-18759",
          "year": 2007
        },
        {
          "pubId": "1783.1-3287",
          "year": 2007
        },
        {
          "pubId": "1783.1-3288",
          "year": 2007
        },
        {
          "pubId": "1783.1-3290",
          "year": 2007
        },
        {
          "pubId": "1783.1-14785",
          "year": 2004
        },
        {
          "pubId": "1783.1-51812",
          "year": 2012
        },
        {
          "pubId": "1783.1-51848",
          "year": 2012
        },
        {
          "pubId": "1783.1-44259",
          "year": 2011
        },
        {
          "pubId": "1783.1-16288",
          "year": 2010
        },
        {
          "pubId": "1783.1-38689",
          "year": 2010
        },
        {
          "pubId": "1783.1-35133",
          "year": 2010
        },
        {
          "pubId": "1783.1-17015",
          "year": 2010
        },
        {
          "pubId": "1783.1-17063",
          "year": 2010
        },
        {
          "pubId": "1783.1-6697",
          "year": 2010
        },
        {
          "pubId": "1783.1-6700",
          "year": 2010
        },
        {
          "pubId": "1783.1-6702",
          "year": 2010
        },
        {
          "pubId": "1783.1-6703",
          "year": 2010
        },
        {
          "pubId": "1783.1-27488",
          "year": 2009
        },
        {
          "pubId": "1783.1-6150",
          "year": 2009
        },
        {
          "pubId": "1783.1-6701",
          "year": 2009
        },
        {
          "pubId": "1783.1-27521",
          "year": 2008
        },
        {
          "pubId": "1783.1-3254",
          "year": 2008
        },
        {
          "pubId": "1783.1-6151",
          "year": 2008
        },
        {
          "pubId": "1783.1-8954",
          "year": 2008
        },
        {
          "pubId": "1783.1-46456",
          "year": 2007
        },
        {
          "pubId": "1783.1-37355",
          "year": 2007
        },
        {
          "pubId": "1783.1-14997",
          "year": 2007
        },
        {
          "pubId": "1783.1-27554",
          "year": 2007
        },
        {
          "pubId": "1783.1-27586",
          "year": 2007
        },
        {
          "pubId": "1783.1-3286",
          "year": 2007
        },
        {
          "pubId": "1783.1-3281",
          "year": 2007
        },
        {
          "pubId": "1783.1-14772",
          "year": 2006
        },
        {
          "pubId": "1783.1-37766",
          "year": 2006
        },
        {
          "pubId": "1783.1-15338",
          "year": 2006
        },
        {
          "pubId": "1783.1-27624",
          "year": 2006
        },
        {
          "pubId": "1783.1-47281",
          "year": 2006
        },
        {
          "pubId": "1783.1-2898",
          "year": 2006
        },
        {
          "pubId": "1783.1-45756",
          "year": 2005
        },
        {
          "pubId": "1783.1-37444",
          "year": 2005
        },
        {
          "pubId": "1783.1-11981",
          "year": 2005
        },
        {
          "pubId": "1783.1-27678",
          "year": 2005
        },
        {
          "pubId": "1783.1-47910",
          "year": 2005
        },
        {
          "pubId": "1783.1-48026",
          "year": 2005
        },
        {
          "pubId": "1783.1-2294",
          "year": 2005
        },
        {
          "pubId": "1783.1-9410",
          "year": 2005
        },
        {
          "pubId": "1783.1-37874",
          "year": 2004
        },
        {
          "pubId": "1783.1-21304",
          "year": 2004
        },
        {
          "pubId": "1783.1-21327",
          "year": 2004
        },
        {
          "pubId": "1783.1-6188",
          "year": 2004
        },
        {
          "pubId": "1783.1-42310",
          "year": 2003
        },
        {
          "pubId": "1783.1-12007",
          "year": 2003
        },
        {
          "pubId": "1783.1-15219",
          "year": 2003
        },
        {
          "pubId": "1783.1-22114",
          "year": 2003
        },
        {
          "pubId": "1783.1-22154",
          "year": 2003
        },
        {
          "pubId": "1783.1-15622",
          "year": 2005
        },
        {
          "pubId": "1783.1-65576",
          "year": 2005
        },
        {
          "pubId": "1783.1-10375",
          "year": 2005
        }
      ]
    },
    {
      "source": 299,
      "target": 313,
      "publications": [
        {
          "pubId": "1783.1-31091",
          "year": 2009
        },
        {
          "pubId": "1783.1-65576",
          "year": 2005
        },
        {
          "pubId": "1783.1-64462",
          "year": 2011
        }
      ]
    },
    {
      "source": 299,
      "target": 319,
      "publications": [
        {
          "pubId": "1783.1-60174",
          "year": 2013
        }
      ]
    },
    {
      "source": 299,
      "target": 338,
      "publications": [
        {
          "pubId": "1783.1-14830",
          "year": 2004
        }
      ]
    },
    {
      "source": 299,
      "target": 333,
      "publications": [
        {
          "pubId": "1783.1-62178",
          "year": 2013
        },
        {
          "pubId": "1783.1-44294",
          "year": 2011
        },
        {
          "pubId": "1783.1-35402",
          "year": 2011
        }
      ]
    },
    {
      "source": 299,
      "target": 336,
      "publications": [
        {
          "pubId": "1783.1-6279",
          "year": 2008
        },
        {
          "pubId": "1783.1-17015",
          "year": 2010
        },
        {
          "pubId": "1783.1-59294",
          "year": 2013
        },
        {
          "pubId": "1783.1-52778",
          "year": 2012
        },
        {
          "pubId": "1783.1-57641",
          "year": 2012
        },
        {
          "pubId": "1783.1-6704",
          "year": 2010
        },
        {
          "pubId": "1783.1-47927",
          "year": 2007
        },
        {
          "pubId": "1783.1-51812",
          "year": 2012
        },
        {
          "pubId": "1783.1-38689",
          "year": 2010
        },
        {
          "pubId": "1783.1-6700",
          "year": 2010
        },
        {
          "pubId": "1783.1-3254",
          "year": 2008
        },
        {
          "pubId": "1783.1-10743",
          "year": 2005
        },
        {
          "pubId": "1783.1-14408",
          "year": 2005
        },
        {
          "pubId": "1783.1-9760",
          "year": 2005
        },
        {
          "pubId": "1783.1-37053",
          "year": 2002
        }
      ]
    },
    {
      "source": 313,
      "target": 375,
      "publications": [
        {
          "pubId": "1783.1-64242",
          "year": 2014
        },
        {
          "pubId": "1783.1-64375",
          "year": 2014
        },
        {
          "pubId": "1783.1-57947",
          "year": 2012
        }
      ]
    },
    {
      "source": 324,
      "target": 360,
      "publications": [
        {
          "pubId": "1783.1-60511",
          "year": 2014
        },
        {
          "pubId": "1783.1-64414",
          "year": 2014
        },
        {
          "pubId": "1783.1-64493",
          "year": 2014
        },
        {
          "pubId": "1783.1-55393",
          "year": 2013
        },
        {
          "pubId": "1783.1-60795",
          "year": 2013
        },
        {
          "pubId": "1783.1-57071",
          "year": 2012
        },
        {
          "pubId": "1783.1-65940",
          "year": 2012
        },
        {
          "pubId": "1783.1-65973",
          "year": 2012
        },
        {
          "pubId": "1783.1-35229",
          "year": 2011
        }
      ]
    },
    {
      "source": 333,
      "target": 336,
      "publications": [
        {
          "pubId": "1783.1-60152",
          "year": 2014
        },
        {
          "pubId": "1783.1-57957",
          "year": 2013
        },
        {
          "pubId": "1783.1-51604",
          "year": 2012
        },
        {
          "pubId": "1783.1-51640",
          "year": 2012
        },
        {
          "pubId": "1783.1-38952",
          "year": 2010
        },
        {
          "pubId": "1783.1-20469",
          "year": 2008
        },
        {
          "pubId": "1783.1-64612",
          "year": 2014
        },
        {
          "pubId": "1783.1-51819",
          "year": 2012
        },
        {
          "pubId": "1783.1-33138",
          "year": 2010
        },
        {
          "pubId": "1783.1-17099",
          "year": 2010
        },
        {
          "pubId": "1783.1-27421",
          "year": 2010
        },
        {
          "pubId": "1783.1-27427",
          "year": 2010
        },
        {
          "pubId": "1783.1-48078",
          "year": 2009
        },
        {
          "pubId": "1783.1-37339",
          "year": 2009
        },
        {
          "pubId": "1783.1-39113",
          "year": 2009
        }
      ]
    },
    {
      "source": 336,
      "target": 373,
      "publications": [
        {
          "pubId": "1783.1-19796",
          "year": 2006
        },
        {
          "pubId": "1783.1-19826",
          "year": 2006
        },
        {
          "pubId": "1783.1-3184",
          "year": 2003
        },
        {
          "pubId": "1783.1-22932",
          "year": 2002
        },
        {
          "pubId": "1783.1-37227",
          "year": 2006
        },
        {
          "pubId": "1783.1-11190",
          "year": 2006
        },
        {
          "pubId": "1783.1-37729",
          "year": 2004
        },
        {
          "pubId": "1783.1-38005",
          "year": 2003
        },
        {
          "pubId": "1783.1-3187",
          "year": 2003
        },
        {
          "pubId": "1783.1-9376",
          "year": 2003
        },
        {
          "pubId": "1783.1-37553",
          "year": 2001
        }
      ]
    },
    {
      "source": 336,
      "target": 338,
      "publications": [
        {
          "pubId": "1783.1-6609",
          "year": 2008
        },
        {
          "pubId": "1783.1-15058",
          "year": 2007
        },
        {
          "pubId": "1783.1-27622",
          "year": 2006
        }
      ]
    }
  ],
  "nodes": [
    {
      "label": "12390:CSE:lixin",
      "dept": "CSE",
      "uniqueID": "12390",
      "fullname": "Li, Xin",
      "id": 341,
      "itsc": "lixin",
      "count": 1
    },
    {
      "label": "13379:CSE:stavrosp",
      "dept": "CSE",
      "uniqueID": "13379",
      "fullname": "Papadopoulos, S",
      "id": 384,
      "itsc": "stavrosp",
      "count": 1
    },
    {
      "label": "12382:CSE:liuyh",
      "dept": "CSE",
      "uniqueID": "12382",
      "fullname": "Liu, Yunhao",
      "id": 299,
      "itsc": "liuyh",
      "count": 18
    },
    {
      "label": "13781:CSE:yike",
      "dept": "CSE",
      "uniqueID": "13781",
      "fullname": "Yi, Ke",
      "id": 333,
      "itsc": "yike",
      "count": 5
    },
    {
      "label": "12445:CSE:lzhang",
      "dept": "CSE",
      "uniqueID": "12445",
      "fullname": "Zhang, Nevin L",
      "id": 271,
      "itsc": "lzhang",
      "count": 3
    },
    {
      "label": "13608:CSE:wng",
      "dept": "CSE",
      "uniqueID": "13608",
      "fullname": "Ng, WILFRED SIU HUNG",
      "id": 360,
      "itsc": "wng",
      "count": 3
    },
    {
      "label": "10252:CSE:bmak",
      "dept": "CSE",
      "uniqueID": "10252",
      "fullname": "Mak, Brian K W",
      "id": 390,
      "itsc": "bmak",
      "count": 2
    },
    {
      "label": "13226:CSE:sccheung",
      "dept": "CSE",
      "uniqueID": "13226",
      "fullname": "",
      "id": 1,
      "itsc": "sccheung",
      "count": 7
    },
    {
      "label": "13142:CSE:rossiter",
      "dept": "CSE",
      "uniqueID": "13142",
      "fullname": "Rossiter, David P",
      "id": 35,
      "itsc": "rossiter",
      "count": 2
    },
    {
      "label": "13070:CSE:qianzh",
      "dept": "CSE",
      "uniqueID": "13070",
      "fullname": "Zhang, Qian",
      "id": 336,
      "itsc": "qianzh",
      "count": 8
    },
    {
      "label": "11529:CSE:helens",
      "dept": "CSE",
      "uniqueID": "11529",
      "fullname": "Shen, Helen C M",
      "id": 107,
      "itsc": "helens",
      "count": 1
    },
    {
      "label": "10029:CSE:achung",
      "dept": "CSE",
      "uniqueID": "10029",
      "fullname": "Chung, ALBERT CHI SHING",
      "id": 103,
      "itsc": "achung",
      "count": 3
    },
    {
      "label": "10250:CSE:bli",
      "dept": "CSE",
      "uniqueID": "10250",
      "fullname": "Li, Bo",
      "id": 141,
      "itsc": "bli",
      "count": 8
    },
    {
      "label": "11663:CSE:huamin",
      "dept": "CSE",
      "uniqueID": "11663",
      "fullname": "Qu, Huamin",
      "id": 319,
      "itsc": "huamin",
      "count": 6
    },
    {
      "label": "12356:CSE:lingu",
      "dept": "CSE",
      "uniqueID": "12356",
      "fullname": "Gu, Lin",
      "id": 109,
      "itsc": "lingu",
      "count": 1
    },
    {
      "label": "11856:CSE:jinzh",
      "dept": "CSE",
      "uniqueID": "11856",
      "fullname": "Zhang, Jin",
      "id": 124,
      "itsc": "jinzh",
      "count": 0
    },
    {
      "label": "13041:CSE:psander",
      "dept": "CSE",
      "uniqueID": "13041",
      "fullname": "Sander, Pedro V",
      "id": 83,
      "itsc": "psander",
      "count": 1
    },
    {
      "label": "11634:CSE:horner",
      "dept": "CSE",
      "uniqueID": "11634",
      "fullname": "Horner, Andrew B",
      "id": 375,
      "itsc": "horner",
      "count": 1
    },
    {
      "label": "11452:CSE:gchan",
      "dept": "CSE",
      "uniqueID": "11452",
      "fullname": "Chan, Gary S H",
      "id": 373,
      "itsc": "gchan",
      "count": 1
    },
    {
      "label": "11432:CSE:fred",
      "dept": "CSE",
      "uniqueID": "11432",
      "fullname": "Lochovsky, Frederick H",
      "id": 40,
      "itsc": "fred",
      "count": 4
    },
    {
      "label": "12312:CSE:leichen",
      "dept": "CSE",
      "uniqueID": "12312",
      "fullname": "Chen, Lei",
      "id": 209,
      "itsc": "leichen",
      "count": 11
    },
    {
      "label": "10455:CSE:cding",
      "dept": "CSE",
      "uniqueID": "10455",
      "fullname": "Ding, Cunsheng",
      "id": 221,
      "itsc": "cding",
      "count": 3
    },
    {
      "label": "13086:CSE:quan",
      "dept": "CSE",
      "uniqueID": "13086",
      "fullname": "Quan, LONG",
      "id": 174,
      "itsc": "quan",
      "count": 4
    },
    {
      "label": "11381:CSE:flin",
      "dept": "CSE",
      "uniqueID": "11381",
      "fullname": "Lin, Fangzhen",
      "id": 248,
      "itsc": "flin",
      "count": 0
    },
    {
      "label": "10761:CSE:csbb",
      "dept": "CSE",
      "uniqueID": "10761",
      "fullname": "Bensaou, BRAHIM",
      "id": 118,
      "itsc": "csbb",
      "count": 0
    },
    {
      "label": "13103:CSE:raywong",
      "dept": "CSE",
      "uniqueID": "13103",
      "fullname": "Wong, Raymond C W",
      "id": 67,
      "itsc": "raywong",
      "count": 3
    },
    {
      "label": "10865:CSE:dekai",
      "dept": "CSE",
      "uniqueID": "10865",
      "fullname": "Wu, Dekai",
      "id": 338,
      "itsc": "dekai",
      "count": 4
    },
    {
      "label": "10915:CSE:dyyeung",
      "dept": "CSE",
      "uniqueID": "10915",
      "fullname": "Yeung, Dit Yan",
      "id": 156,
      "itsc": "dyyeung",
      "count": 6
    },
    {
      "label": "10886:CSE:dlee",
      "dept": "CSE",
      "uniqueID": "10886",
      "fullname": "Lee, Dik Lun",
      "id": 65,
      "itsc": "dlee",
      "count": 7
    },
    {
      "label": "11680:CSE:hunkim",
      "dept": "CSE",
      "uniqueID": "11680",
      "fullname": "Kim, Sung Hun",
      "id": 276,
      "itsc": "hunkim",
      "count": 2
    },
    {
      "label": "11510:CSE:hamdi",
      "dept": "CSE",
      "uniqueID": "11510",
      "fullname": "Hamdi, Mounir",
      "id": 3,
      "itsc": "hamdi",
      "count": 7
    },
    {
      "label": "10882:CSE:dimitris",
      "dept": "CSE",
      "uniqueID": "10882",
      "fullname": "Papadias, Dimitrios",
      "id": 19,
      "itsc": "dimitris",
      "count": 4
    },
    {
      "label": "11474:CSE:golin",
      "dept": "CSE",
      "uniqueID": "11474",
      "fullname": "Golin, Mordecai J",
      "id": 54,
      "itsc": "golin",
      "count": 2
    },
    {
      "label": "13419:CSE:taicl",
      "dept": "CSE",
      "uniqueID": "13419",
      "fullname": "Tai, Chiew Lan",
      "id": 21,
      "itsc": "taicl",
      "count": 2
    },
    {
      "label": "13474:CSEMATH:tonyfchan",
      "dept": "CSE",
      "uniqueID": "13474",
      "fullname": "Chan, Tony F",
      "id": 310,
      "itsc": "tonyfchan",
      "count": 2
    },
    {
      "label": "11795:CSE:jamesk",
      "dept": "CSE",
      "uniqueID": "11795",
      "fullname": "Kwok, JAMES",
      "id": 113,
      "itsc": "jamesk",
      "count": 3
    },
    {
      "label": "12805:CSE:muppala",
      "dept": "CSE",
      "uniqueID": "12805",
      "fullname": "Muppala, K R Jogesh",
      "id": 204,
      "itsc": "muppala",
      "count": 5
    },
    {
      "label": "13095:CSE:qyang",
      "dept": "CSE",
      "uniqueID": "13095",
      "fullname": "Yang, Qiang",
      "id": 313,
      "itsc": "qyang",
      "count": 10
    },
    {
      "label": "12175:CSE:kwtleung",
      "dept": "CSE",
      "uniqueID": "12175",
      "fullname": "Leung, Wai Ting",
      "id": 324,
      "itsc": "kwtleung",
      "count": 2
    },
    {
      "label": "13228:CSE:scheng",
      "dept": "CSE",
      "uniqueID": "13228",
      "fullname": "Cheng, Siu Wing",
      "id": 304,
      "itsc": "scheng",
      "count": 0
    },
    {
      "label": "10740:CSE:cktang",
      "dept": "CSE",
      "uniqueID": "10740",
      "fullname": "Tang, Chi Keung",
      "id": 20,
      "itsc": "cktang",
      "count": 4
    },
    {
      "label": "14055:CSE:panhui",
      "dept": "CSE",
      "uniqueID": "14055",
      "fullname": "Hui, Pan",
      "id": 210,
      "itsc": "panhui",
      "count": 3
    },
    {
      "label": "12828:CSE:ni",
      "dept": "CSE",
      "uniqueID": "12828",
      "fullname": "Ni, LIONEL",
      "id": 292,
      "itsc": "ni",
      "count": 9
    },
    {
      "label": "11465:CSE:gibson",
      "dept": "CSE",
      "uniqueID": "11465",
      "fullname": "Lam, Gibson",
      "id": 238,
      "itsc": "gibson",
      "count": 3
    },
    {
      "label": "10133:CSE:arya",
      "dept": "CSE",
      "uniqueID": "10133",
      "fullname": "Arya, Sunil",
      "id": 237,
      "itsc": "arya",
      "count": 1
    },
    {
      "label": "12431:CSE:luo",
      "dept": "CSE",
      "uniqueID": "12431",
      "fullname": "Luo, Qiong",
      "id": 251,
      "itsc": "luo",
      "count": 9
    }
  ]
}

QQ:782975769

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值