1 Star 3 Fork 1

jspang582/knowledge-neo4j

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
知识图谱.html 113.08 KB
一键复制 编辑 原始数据 按行查看 历史
jspang582 提交于 2021-10-14 09:32 . 提交静态页面
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Test</title>
</head>
<body>
<div id="main" style=" height:800px"></div>
<div id="ss" ></div>
<script src="http://echarts.baidu.com/build/dist/echarts.js"></script>
<script type="text/javascript">
require.config({
paths : {
echarts : 'http://echarts.baidu.com/build/dist'
}
});
require([ "echarts", "echarts/chart/force"], function(ec) {
var myChart = ec.init(document.getElementById('main'))
var option = {
tooltip : {
trigger: 'item',
formatter:function(params){
if(params.data.category!= undefined){
return params.data.label;
}else{
return params.data.flow;
}
}
},
legend: {
x: 'left',
data:['本人','指纹','相关学者','相关指纹' ]
},
series : [ {
type : 'force',
itemStyle : {
normal : {
label : {show : true},
nodeStyle : {
brushType : 'both',
borderColor : 'rgba(255,215,0,0.4)',
borderWidth : 1
}
}
},
categories : [ {name : '本人'}, {name : '指纹'}, {name : '相关学者'},{name : '相关指纹'} ],
useWorker: true, //是否在浏览器支持 web worker 的时候把布局计算放入 web worker 中
focusNodeAdjacency: true, //突出相关
gravity: 1, //向心力系数,系数越大则节点越往中心靠拢
scaling:7, //布局缩放系数,并不完全精确, 效果跟布局大小类似,越小越紧密
roam: true, // 是否开启滚轮缩放和拖拽漫游,默认为false(关闭),其他有效输入为true(开启),'scale'(仅开启滚轮缩放),'move'(仅开启拖拽漫游)
large: false,
linkSymbol: 'arrow',
nodes : [
{
"id": 2019270,
"category": 0,
"name": "2019270",
"label": "赵东元",
"symbolSize": 55,
"ignore": false,
"flag": false
},
{
"id": 1000274611,
"category": 1,
"name": "1000274611",
"label": "synthesis",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000300677,
"category": 1,
"name": "1000300677",
"label": "mesoporous materials",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000458678,
"category": 1,
"name": "1000458678",
"label": "jigs(templates)",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000126595,
"category": 1,
"name": "1000126595",
"label": "Adsorption",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000247899,
"category": 1,
"name": "1000247899",
"label": "Self-assembly",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000306185,
"category": 1,
"name": "1000306185",
"label": "Carbon",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 303500,
"category": 2,
"name": "303500",
"label": "Yuan Gao",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 339344,
"category": 2,
"name": "339344",
"label": "Lü Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 846589,
"category": 2,
"name": "846589",
"label": "Chen Chen",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2080179,
"category": 2,
"name": "2080179",
"label": "赵鑫",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2031337,
"category": 2,
"name": "2031337",
"label": "王爱勤",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1444648,
"category": 2,
"name": "1444648",
"label": "苏宝连",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 241874,
"category": 2,
"name": "241874",
"label": "Meng Li",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1078794,
"category": 2,
"name": "1078794",
"label": "Bo ,li",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1894957,
"category": 2,
"name": "1894957",
"label": "Ferdi Schüth",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 297551,
"category": 2,
"name": "297551",
"label": "Wei Feng",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1898497,
"category": 2,
"name": "1898497",
"label": "Serge Kaliaguine",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1961462,
"category": 2,
"name": "1961462",
"label": "肖丰收",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 249990,
"category": 2,
"name": "249990",
"label": "Yong Huang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 417876,
"category": 2,
"name": "417876",
"label": "王玮",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2039641,
"category": 2,
"name": "2039641",
"label": "Min Chen",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 413873,
"category": 2,
"name": "413873",
"label": "徐骏",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1766854,
"category": 2,
"name": "1766854",
"label": "Ajayan Vinu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 404781,
"category": 2,
"name": "404781",
"label": "Lihua Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1894721,
"category": 2,
"name": "1894721",
"label": "屠波",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1906433,
"category": 2,
"name": "1906433",
"label": "Mark MacLachlan",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 370740,
"category": 2,
"name": "370740",
"label": "Mietek Jaroniec",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 342751,
"category": 2,
"name": "342751",
"label": "张金龙",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 664491,
"category": 2,
"name": "664491",
"label": "Lì Lì",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1918176,
"category": 2,
"name": "1918176",
"label": "Mika Sillanpää",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2051779,
"category": 2,
"name": "2051779",
"label": "Jing Zhang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2035256,
"category": 2,
"name": "2035256",
"label": "Chengzhong Yu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 46964,
"category": 2,
"name": "46964",
"label": "Kun Zhang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 410185,
"category": 2,
"name": "410185",
"label": "Bin Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 990606,
"category": 2,
"name": "990606",
"label": "Li Xu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 320506,
"category": 2,
"name": "320506",
"label": "Qiang Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1417633,
"category": 2,
"name": "1417633",
"label": "Li Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2018953,
"category": 2,
"name": "2018953",
"label": "逯高清",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 646308,
"category": 2,
"name": "646308",
"label": "Yu Liu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 751085,
"category": 2,
"name": "751085",
"label": "Jieshan Qiu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 400352,
"category": 2,
"name": "400352",
"label": "Hao Wu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2022440,
"category": 2,
"name": "2022440",
"label": "Arne faunce Thomas",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1051052,
"category": 2,
"name": "1051052",
"label": "窦士学",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2042959,
"category": 2,
"name": "2042959",
"label": "Hui Xu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1896395,
"category": 2,
"name": "1896395",
"label": "Ulrich Wiesner",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 932824,
"category": 2,
"name": "932824",
"label": "Ray leslie Frost",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2043809,
"category": 2,
"name": "2043809",
"label": "王琪",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 371770,
"category": 2,
"name": "371770",
"label": "魏伟",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1175560,
"category": 2,
"name": "1175560",
"label": "Paul Chu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 247246,
"category": 2,
"name": "247246",
"label": "Lei Chen",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 859422,
"category": 2,
"name": "859422",
"label": "唐本忠",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 279845,
"category": 2,
"name": "279845",
"label": "Fei Liu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 958442,
"category": 2,
"name": "958442",
"label": "Liping Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 863786,
"category": 2,
"name": "863786",
"label": "Haibo Li",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 267723,
"category": 2,
"name": "267723",
"label": "Jíří Čejka",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 413357,
"category": 2,
"name": "413357",
"label": "王鹏",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 842384,
"category": 2,
"name": "842384",
"label": "Thomas Bein",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2037784,
"category": 2,
"name": "2037784",
"label": "俞书宏",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1900103,
"category": 2,
"name": "1900103",
"label": "David Grosso",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 997054,
"category": 2,
"name": "997054",
"label": "Peng Li",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2046376,
"category": 2,
"name": "2046376",
"label": "刘华坤",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 416786,
"category": 2,
"name": "416786",
"label": "张薇",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 279789,
"category": 2,
"name": "279789",
"label": "刘磊 ",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1391558,
"category": 2,
"name": "1391558",
"label": "康飞宇",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1985835,
"category": 2,
"name": "1985835",
"label": "戴胜",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 339333,
"category": 2,
"name": "339333",
"label": "田禾",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 410174,
"category": 2,
"name": "410174",
"label": "李国安",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2059658,
"category": 2,
"name": "2059658",
"label": "赵修松",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 66587,
"category": 2,
"name": "66587",
"label": "Kimoon Kim",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 364992,
"category": 2,
"name": "364992",
"label": "Feng Xu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1872521,
"category": 2,
"name": "1872521",
"label": "Christof Woell",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1988087,
"category": 2,
"name": "1988087",
"label": "Zhongyong Yuan",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 647027,
"category": 2,
"name": "647027",
"label": "Ulrich Schubert",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 750843,
"category": 2,
"name": "750843",
"label": "Jonathan Hill",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 845523,
"category": 2,
"name": "845523",
"label": "孙润仓",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 376039,
"category": 2,
"name": "376039",
"label": "Möhwald H.",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1924415,
"category": 2,
"name": "1924415",
"label": "Craig Hawker",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 300334,
"category": 2,
"name": "300334",
"label": "乔世璋",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1132813,
"category": 2,
"name": "1132813",
"label": "孙剑",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 312261,
"category": 2,
"name": "312261",
"label": "Chao Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1972972,
"category": 2,
"name": "1972972",
"label": "侯红卫",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2059769,
"category": 2,
"name": "2059769",
"label": "Li li ZHANG",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2038302,
"category": 2,
"name": "2038302",
"label": "bo Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2015870,
"category": 2,
"name": "2015870",
"label": "殷亚东",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2006498,
"category": 2,
"name": "2006498",
"label": "朱广山",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1821566,
"category": 2,
"name": "1821566",
"label": "Stefan Kaskel",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 738062,
"category": 2,
"name": "738062",
"label": "Christopher Jones",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2051285,
"category": 2,
"name": "2051285",
"label": "陈超",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1962095,
"category": 2,
"name": "1962095",
"label": "Andreas Hirsch",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2017471,
"category": 2,
"name": "2017471",
"label": "Morinobu Endo",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 417962,
"category": 2,
"name": "417962",
"label": "Jun Hu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2108019,
"category": 2,
"name": "2108019",
"label": "李和兴",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1987986,
"category": 2,
"name": "1987986",
"label": "曾华淳",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2059359,
"category": 2,
"name": "2059359",
"label": "于吉红",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2053105,
"category": 2,
"name": "2053105",
"label": "jun Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1983026,
"category": 2,
"name": "1983026",
"label": "Shilun Qiu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 413404,
"category": 2,
"name": "413404",
"label": "Changsik Ha",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1777195,
"category": 2,
"name": "1777195",
"label": "Abdullah Asiri",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 368756,
"category": 2,
"name": "368756",
"label": " Van Tendeloo G.",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1974296,
"category": 2,
"name": "1974296",
"label": "Bei Cheng",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1912768,
"category": 2,
"name": "1912768",
"label": "Yury Gogotsi",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 417822,
"category": 2,
"name": "417822",
"label": "lin Li",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 418057,
"category": 2,
"name": "418057",
"label": "Gang Liu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 279184,
"category": 2,
"name": "279184",
"label": "李泓",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2028923,
"category": 2,
"name": "2028923",
"label": "Wei Xu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1987626,
"category": 2,
"name": "1987626",
"label": "Clément Sánchez",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2113301,
"category": 2,
"name": "2113301",
"label": "余家国",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 418171,
"category": 2,
"name": "418171",
"label": "李静",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1899910,
"category": 2,
"name": "1899910",
"label": "Katsuhiko Ariga",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2024770,
"category": 2,
"name": "2024770",
"label": "危岩",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 413734,
"category": 2,
"name": "413734",
"label": "Kläus Müllen",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 28659,
"category": 2,
"name": "28659",
"label": "冯新亮",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 846733,
"category": 2,
"name": "846733",
"label": "刘前",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 282120,
"category": 2,
"name": "282120",
"label": "黄维",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 925614,
"category": 2,
"name": "925614",
"label": "Xiaogang Qu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1961158,
"category": 2,
"name": "1961158",
"label": "Michael kam chiu Tam",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 366181,
"category": 2,
"name": "366181",
"label": "Li Yang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2036010,
"category": 2,
"name": "2036010",
"label": "张东",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 232517,
"category": 2,
"name": "232517",
"label": "Yang Yü",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2001081,
"category": 2,
"name": "2001081",
"label": "Chaobin He",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1949898,
"category": 2,
"name": "1949898",
"label": "Markus Antonietti",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1199484,
"category": 2,
"name": "1199484",
"label": "Feng Li",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 413816,
"category": 2,
"name": "413816",
"label": "Wei Zhou",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 2008659,
"category": 2,
"name": "2008659",
"label": "Kazuyuki Kuroda",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 197020,
"category": 2,
"name": "197020",
"label": "Bin Xu",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 874075,
"category": 2,
"name": "874075",
"label": "Ling Wang",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 299049,
"category": 2,
"name": "299049",
"label": "施剑林",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 3621,
"category": 2,
"name": "3621",
"label": "山内悠輔",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000283315,
"category": 3,
"name": "1000283315",
"label": "Raman spectrometry",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000277472,
"category": 3,
"name": "1000277472",
"label": "infrared spectroscopy",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000445667,
"category": 3,
"name": "1000445667",
"label": "crystal structure",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000503939,
"category": 3,
"name": "1000503939",
"label": "Magnetic properties",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000374346,
"category": 3,
"name": "1000374346",
"label": "platinum",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000522004,
"category": 3,
"name": "1000522004",
"label": "lithium ion battery",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000411868,
"category": 3,
"name": "1000411868",
"label": "Lignins",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000129292,
"category": 3,
"name": "1000129292",
"label": "Cellulose",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000461990,
"category": 3,
"name": "1000461990",
"label": "DIARYLETHYLENE",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000247196,
"category": 3,
"name": "1000247196",
"label": "Photochromism",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000147986,
"category": 3,
"name": "1000147986",
"label": "Apoptosis",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000504075,
"category": 3,
"name": "1000504075",
"label": "Microstructure",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000288041,
"category": 3,
"name": "1000288041",
"label": "numerical simulation",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000242233,
"category": 3,
"name": "1000242233",
"label": "Plasma immersion ion implantation",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000299847,
"category": 3,
"name": "1000299847",
"label": "graphene",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000246717,
"category": 3,
"name": "1000246717",
"label": "Nanoparticles",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000440657,
"category": 3,
"name": "1000440657",
"label": "Supercapacitors",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000245103,
"category": 3,
"name": "1000245103",
"label": "Ferroelectric materials",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000435917,
"category": 3,
"name": "1000435917",
"label": "Bismuth titanate",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000450465,
"category": 3,
"name": "1000450465",
"label": "water treatment",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000439165,
"category": 3,
"name": "1000439165",
"label": "Photocatalysts",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000275254,
"category": 3,
"name": "1000275254",
"label": "titanium oxides",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000148461,
"category": 3,
"name": "1000148461",
"label": "Zeolites",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000469563,
"category": 3,
"name": "1000469563",
"label": "MICRO-GRID",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000299291,
"category": 3,
"name": "1000299291",
"label": "distributed power generation",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000146668,
"category": 3,
"name": "1000146668",
"label": "Liver Transplantation",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000246005,
"category": 3,
"name": "1000246005",
"label": "Ionic liquids",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000449371,
"category": 3,
"name": "1000449371",
"label": "sensitivity",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000476144,
"category": 3,
"name": "1000476144",
"label": "Optical properties",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000130683,
"category": 3,
"name": "1000130683",
"label": "Cyclodextrins",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000285116,
"category": 3,
"name": "1000285116",
"label": "supramolecular chemistry",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000155126,
"category": 3,
"name": "1000155126",
"label": "Fullerenes",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000156944,
"category": 3,
"name": "1000156944",
"label": "Dendrimers",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000241292,
"category": 3,
"name": "1000241292",
"label": "Critical current density",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000139742,
"category": 3,
"name": "1000139742",
"label": "Periodontosis",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000147195,
"category": 3,
"name": "1000147195",
"label": "Drug Delivery Systems",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000135542,
"category": 3,
"name": "1000135542",
"label": "Newborn Infant",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000454530,
"category": 3,
"name": "1000454530",
"label": "simulating",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000155127,
"category": 3,
"name": "1000155127",
"label": "Carbon Nanotubes",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000477257,
"category": 3,
"name": "1000477257",
"label": "Composites",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000479729,
"category": 3,
"name": "1000479729",
"label": "Mechanical properties",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000133286,
"category": 3,
"name": "1000133286",
"label": "Fluorescence",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000471673,
"category": 3,
"name": "1000471673",
"label": "SILOLE",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000504422,
"category": 3,
"name": "1000504422",
"label": "Organic light emitting diodes",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000510235,
"category": 3,
"name": "1000510235",
"label": "polyfluorenones",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000502398,
"category": 3,
"name": "1000502398",
"label": "Carbon nitride",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000126858,
"category": 3,
"name": "1000126858",
"label": "Alzheimer Disease",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000432446,
"category": 3,
"name": "1000432446",
"label": "Tau",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000271963,
"category": 3,
"name": "1000271963",
"label": "rock mechanics",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000327902,
"category": 3,
"name": "1000327902",
"label": "aluminium phosphate",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000154906,
"category": 3,
"name": "1000154906",
"label": "MicroRNAs",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000493906,
"category": 3,
"name": "1000493906",
"label": "solar cells",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000450704,
"category": 3,
"name": "1000450704",
"label": "zinc oxides",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000505597,
"category": 3,
"name": "1000505597",
"label": "Transmission electron microscopy",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000159398,
"category": 3,
"name": "1000159398",
"label": "Electron Microscope Tomography",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000470171,
"category": 3,
"name": "1000470171",
"label": "PHOTOCATALYTIC",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000156596,
"category": 3,
"name": "1000156596",
"label": "Chitosan",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000289566,
"category": 3,
"name": "1000289566",
"label": "energy storage",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000496548,
"category": 3,
"name": "1000496548",
"label": "measurement",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000273808,
"category": 3,
"name": "1000273808",
"label": "sorption",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000467471,
"category": 3,
"name": "1000467471",
"label": "CUCURBITURIL",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000475770,
"category": 3,
"name": "1000475770",
"label": "Diesel engines",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000131668,
"category": 3,
"name": "1000131668",
"label": "DNA",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000444997,
"category": 3,
"name": "1000444997",
"label": "block copolymers",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000247366,
"category": 3,
"name": "1000247366",
"label": "Polyelectrolytes",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000146862,
"category": 3,
"name": "1000146862",
"label": "Cytokines",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000300136,
"category": 3,
"name": "1000300136",
"label": "ink jet printing",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000472063,
"category": 3,
"name": "1000472063",
"label": "TERPYRIDINE",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000356523,
"category": 3,
"name": "1000356523",
"label": "interface",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000156764,
"category": 3,
"name": "1000156764",
"label": "Nanostructure",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000502419,
"category": 3,
"name": "1000502419",
"label": "Heterogeneous catalysis",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000247373,
"category": 3,
"name": "1000247373",
"label": "Polyimides",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000530619,
"category": 3,
"name": "1000530619",
"label": "Engineering vehicle",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000004999,
"category": 3,
"name": "1000004999",
"label": "Neural network",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000274062,
"category": 3,
"name": "1000274062",
"label": "stable isotopes",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000279202,
"category": 3,
"name": "1000279202",
"label": "membrane",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000012834,
"category": 3,
"name": "1000012834",
"label": "Hollow Fiber",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000135040,
"category": 3,
"name": "1000135040",
"label": "Hydrogenation",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000242280,
"category": 3,
"name": "1000242280",
"label": "Power quality",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000485674,
"category": 3,
"name": "1000485674",
"label": "Nanocomposites",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000139264,
"category": 3,
"name": "1000139264",
"label": "Palladium",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000140079,
"category": 3,
"name": "1000140079",
"label": "Photosynthesis",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000606324,
"category": 3,
"name": "1000606324",
"label": "MICROWAVE",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000430753,
"category": 3,
"name": "1000430753",
"label": "stabilization",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000134819,
"category": 3,
"name": "1000134819",
"label": "HIV",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000146103,
"category": 3,
"name": "1000146103",
"label": "HIV-1",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000302306,
"category": 3,
"name": "1000302306",
"label": "surface chemistry",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000302479,
"category": 3,
"name": "1000302479",
"label": "thin films",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000247356,
"category": 3,
"name": "1000247356",
"label": "Polyanilines",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000503130,
"category": 3,
"name": "1000503130",
"label": "Electrospinning",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000186164,
"category": 3,
"name": "1000186164",
"label": "perovskite",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000160677,
"category": 3,
"name": "1000160677",
"label": "Click Chemistry",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000504067,
"category": 3,
"name": "1000504067",
"label": "Microporous materials",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000270857,
"category": 3,
"name": "1000270857",
"label": "polymorphism",
"symbolSize": 40,
"ignore": false,
"flag": false
},
{
"id": 1000447535,
"category": 3,
"name": "1000447535",
"label": "lithium sulfur batteries",
"symbolSize": 40,
"ignore": false,
"flag": false
}
],
links: [
{
"source": "1000274611",
"target": "2019270",
"label": "赵东元 使用指纹 'synthesis' 59次",
"num": 59
},
{
"source": "1000300677",
"target": "2019270",
"label": "赵东元 使用指纹 'mesoporous materials' 103次",
"num": 103
},
{
"source": "1000458678",
"target": "2019270",
"label": "赵东元 使用指纹 'jigs(templates)' 22次",
"num": 22
},
{
"source": "1000126595",
"target": "2019270",
"label": "赵东元 使用指纹 'Adsorption' 20次",
"num": 20
},
{
"source": "1000247899",
"target": "2019270",
"label": "赵东元 使用指纹 'Self-assembly' 19次",
"num": 19
},
{
"source": "1000306185",
"target": "2019270",
"label": "赵东元 使用指纹 'Carbon' 18次",
"num": 18
},
{
"source": "1894721",
"target": "1000300677",
"label": "屠波 使用指纹 'mesoporous materials' 31次",
"num": 31
},
{
"source": "1894721",
"target": "1000274611",
"label": "屠波 使用指纹 'synthesis' 27次",
"num": 27
},
{
"source": "1894721",
"target": "1000458678",
"label": "屠波 使用指纹 'jigs(templates)' 13次",
"num": 13
},
{
"source": "1894721",
"target": "1000247899",
"label": "屠波 使用指纹 'Self-assembly' 8次",
"num": 8
},
{
"source": "1894721",
"target": "1000306185",
"label": "屠波 使用指纹 'Carbon' 7次",
"num": 7
},
{
"source": "1777195",
"target": "1000126595",
"label": "Abdullah Asiri 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "1777195",
"target": "1000274611",
"label": "Abdullah Asiri 使用指纹 'synthesis' 10次",
"num": 10
},
{
"source": "1444648",
"target": "1000300677",
"label": "苏宝连 使用指纹 'mesoporous materials' 17次",
"num": 17
},
{
"source": "1444648",
"target": "1000274611",
"label": "苏宝连 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "1417633",
"target": "1000126595",
"label": "Li Wang 使用指纹 'Adsorption' 34次",
"num": 34
},
{
"source": "1417633",
"target": "1000274611",
"label": "Li Wang 使用指纹 'synthesis' 43次",
"num": 43
},
{
"source": "1417633",
"target": "1000247899",
"label": "Li Wang 使用指纹 'Self-assembly' 10次",
"num": 10
},
{
"source": "1199484",
"target": "1000126595",
"label": "Feng Li 使用指纹 'Adsorption' 7次",
"num": 7
},
{
"source": "1199484",
"target": "1000274611",
"label": "Feng Li 使用指纹 'synthesis' 10次",
"num": 10
},
{
"source": "1199484",
"target": "1000247899",
"label": "Feng Li 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "1132813",
"target": "1000126595",
"label": "孙剑 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "1132813",
"target": "1000274611",
"label": "孙剑 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "1078794",
"target": "1000126595",
"label": "Bo ,li 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "1078794",
"target": "1000274611",
"label": "Bo ,li 使用指纹 'synthesis' 5次",
"num": 5
},
{
"source": "1078794",
"target": "1000247899",
"label": "Bo ,li 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "997054",
"target": "1000126595",
"label": "Peng Li 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "997054",
"target": "1000274611",
"label": "Peng Li 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "990606",
"target": "1000247899",
"label": "Li Xu 使用指纹 'Self-assembly' 8次",
"num": 8
},
{
"source": "990606",
"target": "1000274611",
"label": "Li Xu 使用指纹 'synthesis' 18次",
"num": 18
},
{
"source": "958442",
"target": "1000126595",
"label": "Liping Wang 使用指纹 'Adsorption' 8次",
"num": 8
},
{
"source": "958442",
"target": "1000274611",
"label": "Liping Wang 使用指纹 'synthesis' 11次",
"num": 11
},
{
"source": "932824",
"target": "1000126595",
"label": "Ray leslie Frost 使用指纹 'Adsorption' 35次",
"num": 35
},
{
"source": "932824",
"target": "1000274611",
"label": "Ray leslie Frost 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "874075",
"target": "1000126595",
"label": "Ling Wang 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "874075",
"target": "1000274611",
"label": "Ling Wang 使用指纹 'synthesis' 8次",
"num": 8
},
{
"source": "874075",
"target": "1000247899",
"label": "Ling Wang 使用指纹 'Self-assembly' 10次",
"num": 10
},
{
"source": "863786",
"target": "1000126595",
"label": "Haibo Li 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "863786",
"target": "1000274611",
"label": "Haibo Li 使用指纹 'synthesis' 5次",
"num": 5
},
{
"source": "859422",
"target": "1000247899",
"label": "唐本忠 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "859422",
"target": "1000274611",
"label": "唐本忠 使用指纹 'synthesis' 10次",
"num": 10
},
{
"source": "846733",
"target": "1000300677",
"label": "刘前 使用指纹 'mesoporous materials' 8次",
"num": 8
},
{
"source": "846733",
"target": "1000274611",
"label": "刘前 使用指纹 'synthesis' 12次",
"num": 12
},
{
"source": "846733",
"target": "1000126595",
"label": "刘前 使用指纹 'Adsorption' 22次",
"num": 22
},
{
"source": "846733",
"target": "1000247899",
"label": "刘前 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "846589",
"target": "1000247899",
"label": "Chen Chen 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "846589",
"target": "1000274611",
"label": "Chen Chen 使用指纹 'synthesis' 8次",
"num": 8
},
{
"source": "751085",
"target": "1000126595",
"label": "Jieshan Qiu 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "751085",
"target": "1000274611",
"label": "Jieshan Qiu 使用指纹 'synthesis' 5次",
"num": 5
},
{
"source": "751085",
"target": "1000306185",
"label": "Jieshan Qiu 使用指纹 'Carbon' 5次",
"num": 5
},
{
"source": "664491",
"target": "1000126595",
"label": "Lì Lì 使用指纹 'Adsorption' 8次",
"num": 8
},
{
"source": "664491",
"target": "1000274611",
"label": "Lì Lì 使用指纹 'synthesis' 8次",
"num": 8
},
{
"source": "647027",
"target": "1000247899",
"label": "Ulrich Schubert 使用指纹 'Self-assembly' 18次",
"num": 18
},
{
"source": "647027",
"target": "1000274611",
"label": "Ulrich Schubert 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "646308",
"target": "1000247899",
"label": "Yu Liu 使用指纹 'Self-assembly' 16次",
"num": 16
},
{
"source": "646308",
"target": "1000274611",
"label": "Yu Liu 使用指纹 'synthesis' 19次",
"num": 19
},
{
"source": "418171",
"target": "1000126595",
"label": "李静 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "418171",
"target": "1000274611",
"label": "李静 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "418057",
"target": "1000126595",
"label": "Gang Liu 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "418057",
"target": "1000274611",
"label": "Gang Liu 使用指纹 'synthesis' 9次",
"num": 9
},
{
"source": "417962",
"target": "1000300677",
"label": "Jun Hu 使用指纹 'mesoporous materials' 5次",
"num": 5
},
{
"source": "417962",
"target": "1000274611",
"label": "Jun Hu 使用指纹 'synthesis' 5次",
"num": 5
},
{
"source": "417962",
"target": "1000126595",
"label": "Jun Hu 使用指纹 'Adsorption' 25次",
"num": 25
},
{
"source": "417962",
"target": "1000247899",
"label": "Jun Hu 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "417876",
"target": "1000300677",
"label": "王玮 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "417876",
"target": "1000274611",
"label": "王玮 使用指纹 'synthesis' 15次",
"num": 15
},
{
"source": "417876",
"target": "1000126595",
"label": "王玮 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "417876",
"target": "1000247899",
"label": "王玮 使用指纹 'Self-assembly' 11次",
"num": 11
},
{
"source": "416786",
"target": "1000126595",
"label": "张薇 使用指纹 'Adsorption' 8次",
"num": 8
},
{
"source": "416786",
"target": "1000274611",
"label": "张薇 使用指纹 'synthesis' 10次",
"num": 10
},
{
"source": "413873",
"target": "1000126595",
"label": "徐骏 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "413873",
"target": "1000274611",
"label": "徐骏 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "413816",
"target": "1000126595",
"label": "Wei Zhou 使用指纹 'Adsorption' 8次",
"num": 8
},
{
"source": "413816",
"target": "1000274611",
"label": "Wei Zhou 使用指纹 'synthesis' 5次",
"num": 5
},
{
"source": "413404",
"target": "1000300677",
"label": "Changsik Ha 使用指纹 'mesoporous materials' 15次",
"num": 15
},
{
"source": "413404",
"target": "1000274611",
"label": "Changsik Ha 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "413404",
"target": "1000126595",
"label": "Changsik Ha 使用指纹 'Adsorption' 10次",
"num": 10
},
{
"source": "413357",
"target": "1000126595",
"label": "王鹏 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "413357",
"target": "1000274611",
"label": "王鹏 使用指纹 'synthesis' 17次",
"num": 17
},
{
"source": "410185",
"target": "1000126595",
"label": "Bin Wang 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "410185",
"target": "1000274611",
"label": "Bin Wang 使用指纹 'synthesis' 9次",
"num": 9
},
{
"source": "410174",
"target": "1000247899",
"label": "李国安 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "410174",
"target": "1000274611",
"label": "李国安 使用指纹 'synthesis' 17次",
"num": 17
},
{
"source": "404781",
"target": "1000126595",
"label": "Lihua Wang 使用指纹 'Adsorption' 9次",
"num": 9
},
{
"source": "404781",
"target": "1000274611",
"label": "Lihua Wang 使用指纹 'synthesis' 12次",
"num": 12
},
{
"source": "404781",
"target": "1000247899",
"label": "Lihua Wang 使用指纹 'Self-assembly' 9次",
"num": 9
},
{
"source": "371770",
"target": "1000300677",
"label": "魏伟 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "371770",
"target": "1000274611",
"label": "魏伟 使用指纹 'synthesis' 10次",
"num": 10
},
{
"source": "371770",
"target": "1000126595",
"label": "魏伟 使用指纹 'Adsorption' 13次",
"num": 13
},
{
"source": "371770",
"target": "1000247899",
"label": "魏伟 使用指纹 'Self-assembly' 12次",
"num": 12
},
{
"source": "371770",
"target": "1000306185",
"label": "魏伟 使用指纹 'Carbon' 7次",
"num": 7
},
{
"source": "2059769",
"target": "1000126595",
"label": "Li li ZHANG 使用指纹 'Adsorption' 8次",
"num": 8
},
{
"source": "2059769",
"target": "1000274611",
"label": "Li li ZHANG 使用指纹 'synthesis' 9次",
"num": 9
},
{
"source": "2059359",
"target": "1000300677",
"label": "于吉红 使用指纹 'mesoporous materials' 5次",
"num": 5
},
{
"source": "2059359",
"target": "1000274611",
"label": "于吉红 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "2053105",
"target": "1000247899",
"label": "jun Wang 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "2053105",
"target": "1000274611",
"label": "jun Wang 使用指纹 'synthesis' 12次",
"num": 12
},
{
"source": "2051779",
"target": "1000126595",
"label": "Jing Zhang 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "2051779",
"target": "1000274611",
"label": "Jing Zhang 使用指纹 'synthesis' 8次",
"num": 8
},
{
"source": "2051779",
"target": "1000247899",
"label": "Jing Zhang 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "2051285",
"target": "1000126595",
"label": "陈超 使用指纹 'Adsorption' 7次",
"num": 7
},
{
"source": "2051285",
"target": "1000274611",
"label": "陈超 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "2043809",
"target": "1000126595",
"label": "王琪 使用指纹 'Adsorption' 10次",
"num": 10
},
{
"source": "2043809",
"target": "1000274611",
"label": "王琪 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "2043809",
"target": "1000247899",
"label": "王琪 使用指纹 'Self-assembly' 10次",
"num": 10
},
{
"source": "2038302",
"target": "1000126595",
"label": "bo Wang 使用指纹 'Adsorption' 15次",
"num": 15
},
{
"source": "2038302",
"target": "1000274611",
"label": "bo Wang 使用指纹 'synthesis' 16次",
"num": 16
},
{
"source": "2038302",
"target": "1000247899",
"label": "bo Wang 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "2035256",
"target": "1000300677",
"label": "Chengzhong Yu 使用指纹 'mesoporous materials' 27次",
"num": 27
},
{
"source": "2035256",
"target": "1000274611",
"label": "Chengzhong Yu 使用指纹 'synthesis' 15次",
"num": 15
},
{
"source": "2035256",
"target": "1000126595",
"label": "Chengzhong Yu 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "2035256",
"target": "1000247899",
"label": "Chengzhong Yu 使用指纹 'Self-assembly' 11次",
"num": 11
},
{
"source": "370740",
"target": "1000126595",
"label": "Mietek Jaroniec 使用指纹 'Adsorption' 21次",
"num": 21
},
{
"source": "370740",
"target": "1000274611",
"label": "Mietek Jaroniec 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "2031337",
"target": "1000300677",
"label": "王爱勤 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "2031337",
"target": "1000274611",
"label": "王爱勤 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "2031337",
"target": "1000126595",
"label": "王爱勤 使用指纹 'Adsorption' 65次",
"num": 65
},
{
"source": "2031337",
"target": "1000306185",
"label": "王爱勤 使用指纹 'Carbon' 5次",
"num": 5
},
{
"source": "366181",
"target": "1000126595",
"label": "Li Yang 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "366181",
"target": "1000274611",
"label": "Li Yang 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "364992",
"target": "1000126595",
"label": "Feng Xu 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "364992",
"target": "1000274611",
"label": "Feng Xu 使用指纹 'synthesis' 8次",
"num": 8
},
{
"source": "364992",
"target": "1000247899",
"label": "Feng Xu 使用指纹 'Self-assembly' 10次",
"num": 10
},
{
"source": "2006498",
"target": "1000300677",
"label": "朱广山 使用指纹 'mesoporous materials' 12次",
"num": 12
},
{
"source": "2006498",
"target": "1000274611",
"label": "朱广山 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "2006498",
"target": "1000126595",
"label": "朱广山 使用指纹 'Adsorption' 7次",
"num": 7
},
{
"source": "2001081",
"target": "1000247899",
"label": "Chaobin He 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "2001081",
"target": "1000274611",
"label": "Chaobin He 使用指纹 'synthesis' 5次",
"num": 5
},
{
"source": "1983026",
"target": "1000300677",
"label": "Shilun Qiu 使用指纹 'mesoporous materials' 14次",
"num": 14
},
{
"source": "1983026",
"target": "1000274611",
"label": "Shilun Qiu 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "1983026",
"target": "1000126595",
"label": "Shilun Qiu 使用指纹 'Adsorption' 7次",
"num": 7
},
{
"source": "339344",
"target": "1000126595",
"label": "Lü Wang 使用指纹 'Adsorption' 8次",
"num": 8
},
{
"source": "339344",
"target": "1000274611",
"label": "Lü Wang 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "339344",
"target": "1000247899",
"label": "Lü Wang 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "339333",
"target": "1000247899",
"label": "田禾 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "339333",
"target": "1000274611",
"label": "田禾 使用指纹 'synthesis' 10次",
"num": 10
},
{
"source": "1972972",
"target": "1000247899",
"label": "侯红卫 使用指纹 'Self-assembly' 10次",
"num": 10
},
{
"source": "1972972",
"target": "1000274611",
"label": "侯红卫 使用指纹 'synthesis' 13次",
"num": 13
},
{
"source": "320506",
"target": "1000126595",
"label": "Qiang Wang 使用指纹 'Adsorption' 15次",
"num": 15
},
{
"source": "320506",
"target": "1000274611",
"label": "Qiang Wang 使用指纹 'synthesis' 21次",
"num": 21
},
{
"source": "312261",
"target": "1000247899",
"label": "Chao Wang 使用指纹 'Self-assembly' 8次",
"num": 8
},
{
"source": "312261",
"target": "1000274611",
"label": "Chao Wang 使用指纹 'synthesis' 10次",
"num": 10
},
{
"source": "303500",
"target": "1000300677",
"label": "Yuan Gao 使用指纹 'mesoporous materials' 5次",
"num": 5
},
{
"source": "303500",
"target": "1000274611",
"label": "Yuan Gao 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "303500",
"target": "1000126595",
"label": "Yuan Gao 使用指纹 'Adsorption' 9次",
"num": 9
},
{
"source": "299049",
"target": "1000300677",
"label": "施剑林 使用指纹 'mesoporous materials' 36次",
"num": 36
},
{
"source": "299049",
"target": "1000274611",
"label": "施剑林 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "299049",
"target": "1000306185",
"label": "施剑林 使用指纹 'Carbon' 6次",
"num": 6
},
{
"source": "282120",
"target": "1000247899",
"label": "黄维 使用指纹 'Self-assembly' 17次",
"num": 17
},
{
"source": "282120",
"target": "1000274611",
"label": "黄维 使用指纹 'synthesis' 10次",
"num": 10
},
{
"source": "1924415",
"target": "1000247899",
"label": "Craig Hawker 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "1924415",
"target": "1000274611",
"label": "Craig Hawker 使用指纹 'synthesis' 5次",
"num": 5
},
{
"source": "279845",
"target": "1000126595",
"label": "Fei Liu 使用指纹 'Adsorption' 14次",
"num": 14
},
{
"source": "279845",
"target": "1000274611",
"label": "Fei Liu 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "279789",
"target": "1000300677",
"label": "刘磊 使用指纹 'mesoporous materials' 5次",
"num": 5
},
{
"source": "279789",
"target": "1000274611",
"label": "刘磊 使用指纹 'synthesis' 9次",
"num": 9
},
{
"source": "279789",
"target": "1000247899",
"label": "刘磊 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "267723",
"target": "1000300677",
"label": "Jíří Čejka 使用指纹 'mesoporous materials' 8次",
"num": 8
},
{
"source": "267723",
"target": "1000274611",
"label": "Jíří Čejka 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "1918176",
"target": "1000300677",
"label": "Mika Sillanpää 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "1918176",
"target": "1000274611",
"label": "Mika Sillanpää 使用指纹 'synthesis' 6次",
"num": 6
},
{
"source": "1918176",
"target": "1000126595",
"label": "Mika Sillanpää 使用指纹 'Adsorption' 61次",
"num": 61
},
{
"source": "249990",
"target": "1000126595",
"label": "Yong Huang 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "249990",
"target": "1000274611",
"label": "Yong Huang 使用指纹 'synthesis' 7次",
"num": 7
},
{
"source": "247246",
"target": "1000126595",
"label": "Lei Chen 使用指纹 'Adsorption' 7次",
"num": 7
},
{
"source": "247246",
"target": "1000274611",
"label": "Lei Chen 使用指纹 'synthesis' 11次",
"num": 11
},
{
"source": "232517",
"target": "1000126595",
"label": "Yang Yü 使用指纹 'Adsorption' 9次",
"num": 9
},
{
"source": "232517",
"target": "1000274611",
"label": "Yang Yü 使用指纹 'synthesis' 8次",
"num": 8
},
{
"source": "197020",
"target": "1000126595",
"label": "Bin Xu 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "197020",
"target": "1000274611",
"label": "Bin Xu 使用指纹 'synthesis' 8次",
"num": 8
},
{
"source": "46964",
"target": "1000300677",
"label": "Kun Zhang 使用指纹 'mesoporous materials' 7次",
"num": 7
},
{
"source": "46964",
"target": "1000274611",
"label": "Kun Zhang 使用指纹 'synthesis' 5次",
"num": 5
},
{
"source": "1906433",
"target": "1000247899",
"label": "Mark MacLachlan 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "1906433",
"target": "1000300677",
"label": "Mark MacLachlan 使用指纹 'mesoporous materials' 11次",
"num": 11
},
{
"source": "1900103",
"target": "1000247899",
"label": "David Grosso 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "1900103",
"target": "1000300677",
"label": "David Grosso 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "1899910",
"target": "1000126595",
"label": "Katsuhiko Ariga 使用指纹 'Adsorption' 11次",
"num": 11
},
{
"source": "1899910",
"target": "1000300677",
"label": "Katsuhiko Ariga 使用指纹 'mesoporous materials' 36次",
"num": 36
},
{
"source": "1899910",
"target": "1000247899",
"label": "Katsuhiko Ariga 使用指纹 'Self-assembly' 33次",
"num": 33
},
{
"source": "1899910",
"target": "1000306185",
"label": "Katsuhiko Ariga 使用指纹 'Carbon' 7次",
"num": 7
},
{
"source": "1898497",
"target": "1000126595",
"label": "Serge Kaliaguine 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "1898497",
"target": "1000300677",
"label": "Serge Kaliaguine 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "1896395",
"target": "1000247899",
"label": "Ulrich Wiesner 使用指纹 'Self-assembly' 24次",
"num": 24
},
{
"source": "1896395",
"target": "1000300677",
"label": "Ulrich Wiesner 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "1894957",
"target": "1000306185",
"label": "Ferdi Schüth 使用指纹 'Carbon' 8次",
"num": 8
},
{
"source": "1894957",
"target": "1000300677",
"label": "Ferdi Schüth 使用指纹 'mesoporous materials' 16次",
"num": 16
},
{
"source": "1821566",
"target": "1000126595",
"label": "Stefan Kaskel 使用指纹 'Adsorption' 9次",
"num": 9
},
{
"source": "1821566",
"target": "1000300677",
"label": "Stefan Kaskel 使用指纹 'mesoporous materials' 11次",
"num": 11
},
{
"source": "1821566",
"target": "1000306185",
"label": "Stefan Kaskel 使用指纹 'Carbon' 5次",
"num": 5
},
{
"source": "1766854",
"target": "1000126595",
"label": "Ajayan Vinu 使用指纹 'Adsorption' 17次",
"num": 17
},
{
"source": "1766854",
"target": "1000300677",
"label": "Ajayan Vinu 使用指纹 'mesoporous materials' 58次",
"num": 58
},
{
"source": "1766854",
"target": "1000306185",
"label": "Ajayan Vinu 使用指纹 'Carbon' 13次",
"num": 13
},
{
"source": "1175560",
"target": "1000126595",
"label": "Paul Chu 使用指纹 'Adsorption' 8次",
"num": 8
},
{
"source": "1175560",
"target": "1000300677",
"label": "Paul Chu 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "1175560",
"target": "1000247899",
"label": "Paul Chu 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "1051052",
"target": "1000247899",
"label": "窦士学 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "1051052",
"target": "1000300677",
"label": "窦士学 使用指纹 'mesoporous materials' 7次",
"num": 7
},
{
"source": "1051052",
"target": "1000306185",
"label": "窦士学 使用指纹 'Carbon' 7次",
"num": 7
},
{
"source": "925614",
"target": "1000247899",
"label": "Xiaogang Qu 使用指纹 'Self-assembly' 10次",
"num": 10
},
{
"source": "925614",
"target": "1000300677",
"label": "Xiaogang Qu 使用指纹 'mesoporous materials' 8次",
"num": 8
},
{
"source": "842384",
"target": "1000247899",
"label": "Thomas Bein 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "842384",
"target": "1000300677",
"label": "Thomas Bein 使用指纹 'mesoporous materials' 11次",
"num": 11
},
{
"source": "750843",
"target": "1000247899",
"label": "Jonathan Hill 使用指纹 'Self-assembly' 22次",
"num": 22
},
{
"source": "750843",
"target": "1000300677",
"label": "Jonathan Hill 使用指纹 'mesoporous materials' 8次",
"num": 8
},
{
"source": "738062",
"target": "1000126595",
"label": "Christopher Jones 使用指纹 'Adsorption' 19次",
"num": 19
},
{
"source": "738062",
"target": "1000300677",
"label": "Christopher Jones 使用指纹 'mesoporous materials' 8次",
"num": 8
},
{
"source": "2113301",
"target": "1000126595",
"label": "余家国 使用指纹 'Adsorption' 18次",
"num": 18
},
{
"source": "2113301",
"target": "1000300677",
"label": "余家国 使用指纹 'mesoporous materials' 13次",
"num": 13
},
{
"source": "2108019",
"target": "1000126595",
"label": "李和兴 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "2108019",
"target": "1000300677",
"label": "李和兴 使用指纹 'mesoporous materials' 18次",
"num": 18
},
{
"source": "2059658",
"target": "1000126595",
"label": "赵修松 使用指纹 'Adsorption' 11次",
"num": 11
},
{
"source": "2059658",
"target": "1000300677",
"label": "赵修松 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "2059658",
"target": "1000247899",
"label": "赵修松 使用指纹 'Self-assembly' 8次",
"num": 8
},
{
"source": "2039641",
"target": "1000247899",
"label": "Min Chen 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "2039641",
"target": "1000300677",
"label": "Min Chen 使用指纹 'mesoporous materials' 5次",
"num": 5
},
{
"source": "2037784",
"target": "1000247899",
"label": "俞书宏 使用指纹 'Self-assembly' 9次",
"num": 9
},
{
"source": "2037784",
"target": "1000300677",
"label": "俞书宏 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "368756",
"target": "1000126595",
"label": " Van Tendeloo G. 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "368756",
"target": "1000300677",
"label": " Van Tendeloo G. 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "2024770",
"target": "1000247899",
"label": "危岩 使用指纹 'Self-assembly' 14次",
"num": 14
},
{
"source": "2024770",
"target": "1000300677",
"label": "危岩 使用指纹 'mesoporous materials' 6次",
"num": 6
},
{
"source": "2022440",
"target": "1000306185",
"label": "Arne faunce Thomas 使用指纹 'Carbon' 6次",
"num": 6
},
{
"source": "2022440",
"target": "1000300677",
"label": "Arne faunce Thomas 使用指纹 'mesoporous materials' 7次",
"num": 7
},
{
"source": "2018953",
"target": "1000247899",
"label": "逯高清 使用指纹 'Self-assembly' 8次",
"num": 8
},
{
"source": "2018953",
"target": "1000300677",
"label": "逯高清 使用指纹 'mesoporous materials' 12次",
"num": 12
},
{
"source": "2018953",
"target": "1000306185",
"label": "逯高清 使用指纹 'Carbon' 5次",
"num": 5
},
{
"source": "2015870",
"target": "1000247899",
"label": "殷亚东 使用指纹 'Self-assembly' 13次",
"num": 13
},
{
"source": "2015870",
"target": "1000300677",
"label": "殷亚东 使用指纹 'mesoporous materials' 10次",
"num": 10
},
{
"source": "2008659",
"target": "1000247899",
"label": "Kazuyuki Kuroda 使用指纹 'Self-assembly' 8次",
"num": 8
},
{
"source": "2008659",
"target": "1000300677",
"label": "Kazuyuki Kuroda 使用指纹 'mesoporous materials' 17次",
"num": 17
},
{
"source": "1988087",
"target": "1000126595",
"label": "Zhongyong Yuan 使用指纹 'Adsorption' 7次",
"num": 7
},
{
"source": "1988087",
"target": "1000300677",
"label": "Zhongyong Yuan 使用指纹 'mesoporous materials' 25次",
"num": 25
},
{
"source": "1987986",
"target": "1000247899",
"label": "曾华淳 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "1987986",
"target": "1000300677",
"label": "曾华淳 使用指纹 'mesoporous materials' 5次",
"num": 5
},
{
"source": "1987626",
"target": "1000247899",
"label": "Clément Sánchez 使用指纹 'Self-assembly' 8次",
"num": 8
},
{
"source": "1987626",
"target": "1000300677",
"label": "Clément Sánchez 使用指纹 'mesoporous materials' 10次",
"num": 10
},
{
"source": "1985835",
"target": "1000247899",
"label": "戴胜 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "1985835",
"target": "1000300677",
"label": "戴胜 使用指纹 'mesoporous materials' 12次",
"num": 12
},
{
"source": "1985835",
"target": "1000306185",
"label": "戴胜 使用指纹 'Carbon' 8次",
"num": 8
},
{
"source": "342751",
"target": "1000126595",
"label": "张金龙 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "342751",
"target": "1000300677",
"label": "张金龙 使用指纹 'mesoporous materials' 14次",
"num": 14
},
{
"source": "342751",
"target": "1000306185",
"label": "张金龙 使用指纹 'Carbon' 5次",
"num": 5
},
{
"source": "1974296",
"target": "1000126595",
"label": "Bei Cheng 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "1974296",
"target": "1000300677",
"label": "Bei Cheng 使用指纹 'mesoporous materials' 9次",
"num": 9
},
{
"source": "1961462",
"target": "1000126595",
"label": "肖丰收 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "1961462",
"target": "1000300677",
"label": "肖丰收 使用指纹 'mesoporous materials' 12次",
"num": 12
},
{
"source": "1949898",
"target": "1000247899",
"label": "Markus Antonietti 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "1949898",
"target": "1000300677",
"label": "Markus Antonietti 使用指纹 'mesoporous materials' 9次",
"num": 9
},
{
"source": "1949898",
"target": "1000306185",
"label": "Markus Antonietti 使用指纹 'Carbon' 9次",
"num": 9
},
{
"source": "300334",
"target": "1000306185",
"label": "乔世璋 使用指纹 'Carbon' 5次",
"num": 5
},
{
"source": "300334",
"target": "1000300677",
"label": "乔世璋 使用指纹 'mesoporous materials' 7次",
"num": 7
},
{
"source": "28659",
"target": "1000247899",
"label": "冯新亮 使用指纹 'Self-assembly' 30次",
"num": 30
},
{
"source": "28659",
"target": "1000300677",
"label": "冯新亮 使用指纹 'mesoporous materials' 5次",
"num": 5
},
{
"source": "3621",
"target": "1000247899",
"label": "山内悠輔 使用指纹 'Self-assembly' 8次",
"num": 8
},
{
"source": "3621",
"target": "1000300677",
"label": "山内悠輔 使用指纹 'mesoporous materials' 108次",
"num": 108
},
{
"source": "3621",
"target": "1000306185",
"label": "山内悠輔 使用指纹 'Carbon' 10次",
"num": 10
},
{
"source": "1872521",
"target": "1000247899",
"label": "Christof Woell 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "1872521",
"target": "1000126595",
"label": "Christof Woell 使用指纹 'Adsorption' 8次",
"num": 8
},
{
"source": "1391558",
"target": "1000306185",
"label": "康飞宇 使用指纹 'Carbon' 8次",
"num": 8
},
{
"source": "1391558",
"target": "1000126595",
"label": "康飞宇 使用指纹 'Adsorption' 10次",
"num": 10
},
{
"source": "845523",
"target": "1000247899",
"label": "孙润仓 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "845523",
"target": "1000126595",
"label": "孙润仓 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "417822",
"target": "1000247899",
"label": "lin Li 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "417822",
"target": "1000126595",
"label": "lin Li 使用指纹 'Adsorption' 8次",
"num": 8
},
{
"source": "400352",
"target": "1000247899",
"label": "Hao Wu 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "400352",
"target": "1000126595",
"label": "Hao Wu 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "376039",
"target": "1000247899",
"label": "Möhwald H. 使用指纹 'Self-assembly' 14次",
"num": 14
},
{
"source": "376039",
"target": "1000126595",
"label": "Möhwald H. 使用指纹 'Adsorption' 7次",
"num": 7
},
{
"source": "2080179",
"target": "1000247899",
"label": "赵鑫 使用指纹 'Self-assembly' 11次",
"num": 11
},
{
"source": "2080179",
"target": "1000126595",
"label": "赵鑫 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "2046376",
"target": "1000247899",
"label": "刘华坤 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "2046376",
"target": "1000126595",
"label": "刘华坤 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "2046376",
"target": "1000306185",
"label": "刘华坤 使用指纹 'Carbon' 5次",
"num": 5
},
{
"source": "2042959",
"target": "1000247899",
"label": "Hui Xu 使用指纹 'Self-assembly' 6次",
"num": 6
},
{
"source": "2042959",
"target": "1000126595",
"label": "Hui Xu 使用指纹 'Adsorption' 25次",
"num": 25
},
{
"source": "2036010",
"target": "1000247899",
"label": "张东 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "2036010",
"target": "1000126595",
"label": "张东 使用指纹 'Adsorption' 25次",
"num": 25
},
{
"source": "2028923",
"target": "1000247899",
"label": "Wei Xu 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "2028923",
"target": "1000126595",
"label": "Wei Xu 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "2017471",
"target": "1000306185",
"label": "Morinobu Endo 使用指纹 'Carbon' 10次",
"num": 10
},
{
"source": "2017471",
"target": "1000126595",
"label": "Morinobu Endo 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "1961158",
"target": "1000247899",
"label": "Michael kam chiu Tam 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "1961158",
"target": "1000126595",
"label": "Michael kam chiu Tam 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "297551",
"target": "1000247899",
"label": "Wei Feng 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "297551",
"target": "1000126595",
"label": "Wei Feng 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "279184",
"target": "1000247899",
"label": "李泓 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "279184",
"target": "1000126595",
"label": "李泓 使用指纹 'Adsorption' 13次",
"num": 13
},
{
"source": "241874",
"target": "1000247899",
"label": "Meng Li 使用指纹 'Self-assembly' 5次",
"num": 5
},
{
"source": "241874",
"target": "1000126595",
"label": "Meng Li 使用指纹 'Adsorption' 7次",
"num": 7
},
{
"source": "1912768",
"target": "1000306185",
"label": "Yury Gogotsi 使用指纹 'Carbon' 8次",
"num": 8
},
{
"source": "1912768",
"target": "1000126595",
"label": "Yury Gogotsi 使用指纹 'Adsorption' 6次",
"num": 6
},
{
"source": "66587",
"target": "1000247899",
"label": "Kimoon Kim 使用指纹 'Self-assembly' 7次",
"num": 7
},
{
"source": "66587",
"target": "1000126595",
"label": "Kimoon Kim 使用指纹 'Adsorption' 5次",
"num": 5
},
{
"source": "413734",
"target": "1000306185",
"label": "Kläus Müllen 使用指纹 'Carbon' 7次",
"num": 7
},
{
"source": "413734",
"target": "1000247899",
"label": "Kläus Müllen 使用指纹 'Self-assembly' 62次",
"num": 62
},
{
"source": "1962095",
"target": "1000306185",
"label": "Andreas Hirsch 使用指纹 'Carbon' 6次",
"num": 6
},
{
"source": "1962095",
"target": "1000247899",
"label": "Andreas Hirsch 使用指纹 'Self-assembly' 14次",
"num": 14
},
{
"source": "1000283315",
"target": "932824",
"label": "Ray leslie Frost 使用指纹 'Raman spectrometry' 297次",
"num": 297
},
{
"source": "1000277472",
"target": "932824",
"label": "Ray leslie Frost 使用指纹 'infrared spectroscopy' 133次",
"num": 133
},
{
"source": "1000445667",
"target": "1972972",
"label": "侯红卫 使用指纹 'crystal structure' 108次",
"num": 108
},
{
"source": "1000503939",
"target": "1972972",
"label": "侯红卫 使用指纹 'Magnetic properties' 20次",
"num": 20
},
{
"source": "1000374346",
"target": "3621",
"label": "山内悠輔 使用指纹 'platinum' 27次",
"num": 27
},
{
"source": "1000522004",
"target": "2046376",
"label": "刘华坤 使用指纹 'lithium ion battery' 100次",
"num": 100
},
{
"source": "1000411868",
"target": "845523",
"label": "孙润仓 使用指纹 'Lignins' 86次",
"num": 86
},
{
"source": "1000129292",
"target": "845523",
"label": "孙润仓 使用指纹 'Cellulose' 80次",
"num": 80
},
{
"source": "1000461990",
"target": "418057",
"label": "Gang Liu 使用指纹 'DIARYLETHYLENE' 76次",
"num": 76
},
{
"source": "1000247196",
"target": "418057",
"label": "Gang Liu 使用指纹 'Photochromism' 76次",
"num": 76
},
{
"source": "1000445667",
"target": "366181",
"label": "Li Yang 使用指纹 'crystal structure' 75次",
"num": 75
},
{
"source": "1000147986",
"target": "366181",
"label": "Li Yang 使用指纹 'Apoptosis' 45次",
"num": 45
},
{
"source": "1000504075",
"target": "320506",
"label": "Qiang Wang 使用指纹 'Microstructure' 63次",
"num": 63
},
{
"source": "1000288041",
"target": "320506",
"label": "Qiang Wang 使用指纹 'numerical simulation' 59次",
"num": 59
},
{
"source": "1000522004",
"target": "1417633",
"label": "Li Wang 使用指纹 'lithium ion battery' 63次",
"num": 63
},
{
"source": "1000242233",
"target": "1175560",
"label": "Paul Chu 使用指纹 'Plasma immersion ion implantation' 62次",
"num": 62
},
{
"source": "1000299847",
"target": "413734",
"label": "Kläus Müllen 使用指纹 'graphene' 51次",
"num": 51
},
{
"source": "1000246717",
"target": "413734",
"label": "Kläus Müllen 使用指纹 'Nanoparticles' 21次",
"num": 21
},
{
"source": "1000299847",
"target": "28659",
"label": "冯新亮 使用指纹 'graphene' 62次",
"num": 62
},
{
"source": "1000440657",
"target": "28659",
"label": "冯新亮 使用指纹 'Supercapacitors' 15次",
"num": 15
},
{
"source": "1000245103",
"target": "2039641",
"label": "Min Chen 使用指纹 'Ferroelectric materials' 61次",
"num": 61
},
{
"source": "1000435917",
"target": "2039641",
"label": "Min Chen 使用指纹 'Bismuth titanate' 39次",
"num": 39
},
{
"source": "1000450465",
"target": "1918176",
"label": "Mika Sillanpää 使用指纹 'water treatment' 47次",
"num": 47
},
{
"source": "1000246717",
"target": "1766854",
"label": "Ajayan Vinu 使用指纹 'Nanoparticles' 16次",
"num": 16
},
{
"source": "1000439165",
"target": "2113301",
"label": "余家国 使用指纹 'Photocatalysts' 55次",
"num": 55
},
{
"source": "1000275254",
"target": "2113301",
"label": "余家国 使用指纹 'titanium oxides' 24次",
"num": 24
},
{
"source": "1000283315",
"target": "267723",
"label": "Jíří Čejka 使用指纹 'Raman spectrometry' 54次",
"num": 54
},
{
"source": "1000148461",
"target": "267723",
"label": "Jíří Čejka 使用指纹 'Zeolites' 34次",
"num": 34
},
{
"source": "1000439165",
"target": "342751",
"label": "张金龙 使用指纹 'Photocatalysts' 51次",
"num": 51
},
{
"source": "1000469563",
"target": "997054",
"label": "Peng Li 使用指纹 'MICRO-GRID' 50次",
"num": 50
},
{
"source": "1000299291",
"target": "997054",
"label": "Peng Li 使用指纹 'distributed power generation' 22次",
"num": 22
},
{
"source": "1000411868",
"target": "364992",
"label": "Feng Xu 使用指纹 'Lignins' 50次",
"num": 50
},
{
"source": "1000504075",
"target": "2038302",
"label": "bo Wang 使用指纹 'Microstructure' 47次",
"num": 47
},
{
"source": "1000146668",
"target": "1078794",
"label": "Bo ,li 使用指纹 'Liver Transplantation' 45次",
"num": 45
},
{
"source": "1000522004",
"target": "1391558",
"label": "康飞宇 使用指纹 'lithium ion battery' 43次",
"num": 43
},
{
"source": "1000440657",
"target": "1391558",
"label": "康飞宇 使用指纹 'Supercapacitors' 35次",
"num": 35
},
{
"source": "1000246005",
"target": "1985835",
"label": "戴胜 使用指纹 'Ionic liquids' 43次",
"num": 43
},
{
"source": "1000449371",
"target": "1777195",
"label": "Abdullah Asiri 使用指纹 'sensitivity' 40次",
"num": 40
},
{
"source": "1000476144",
"target": "1777195",
"label": "Abdullah Asiri 使用指纹 'Optical properties' 32次",
"num": 32
},
{
"source": "1000130683",
"target": "646308",
"label": "Yu Liu 使用指纹 'Cyclodextrins' 39次",
"num": 39
},
{
"source": "1000285116",
"target": "646308",
"label": "Yu Liu 使用指纹 'supramolecular chemistry' 25次",
"num": 25
},
{
"source": "1000155126",
"target": "1962095",
"label": "Andreas Hirsch 使用指纹 'Fullerenes' 38次",
"num": 38
},
{
"source": "1000156944",
"target": "1962095",
"label": "Andreas Hirsch 使用指纹 'Dendrimers' 20次",
"num": 20
},
{
"source": "1000241292",
"target": "1051052",
"label": "窦士学 使用指纹 'Critical current density' 37次",
"num": 37
},
{
"source": "1000147986",
"target": "1199484",
"label": "Feng Li 使用指纹 'Apoptosis' 37次",
"num": 37
},
{
"source": "1000445667",
"target": "990606",
"label": "Li Xu 使用指纹 'crystal structure' 36次",
"num": 36
},
{
"source": "1000139742",
"target": "990606",
"label": "Li Xu 使用指纹 'Periodontosis' 12次",
"num": 12
},
{
"source": "1000147195",
"target": "299049",
"label": "施剑林 使用指纹 'Drug Delivery Systems' 31次",
"num": 31
},
{
"source": "1000135542",
"target": "2051285",
"label": "陈超 使用指纹 'Newborn Infant' 35次",
"num": 35
},
{
"source": "1000454530",
"target": "2051285",
"label": "陈超 使用指纹 'simulating' 17次",
"num": 17
},
{
"source": "1000445667",
"target": "410174",
"label": "李国安 使用指纹 'crystal structure' 34次",
"num": 34
},
{
"source": "1000147986",
"target": "410174",
"label": "李国安 使用指纹 'Apoptosis' 16次",
"num": 16
},
{
"source": "1000155127",
"target": "2017471",
"label": "Morinobu Endo 使用指纹 'Carbon Nanotubes' 34次",
"num": 34
},
{
"source": "1000477257",
"target": "2017471",
"label": "Morinobu Endo 使用指纹 'Composites' 13次",
"num": 13
},
{
"source": "1000522004",
"target": "279184",
"label": "李泓 使用指纹 'lithium ion battery' 34次",
"num": 34
},
{
"source": "1000147986",
"target": "279184",
"label": "李泓 使用指纹 'Apoptosis' 32次",
"num": 32
},
{
"source": "1000147986",
"target": "232517",
"label": "Yang Yü 使用指纹 'Apoptosis' 34次",
"num": 34
},
{
"source": "1000288041",
"target": "232517",
"label": "Yang Yü 使用指纹 'numerical simulation' 25次",
"num": 25
},
{
"source": "1000479729",
"target": "339344",
"label": "Lü Wang 使用指纹 'Mechanical properties' 33次",
"num": 33
},
{
"source": "1000288041",
"target": "416786",
"label": "张薇 使用指纹 'numerical simulation' 32次",
"num": 32
},
{
"source": "1000147986",
"target": "416786",
"label": "张薇 使用指纹 'Apoptosis' 27次",
"num": 27
},
{
"source": "1000147986",
"target": "874075",
"label": "Ling Wang 使用指纹 'Apoptosis' 32次",
"num": 32
},
{
"source": "1000133286",
"target": "859422",
"label": "唐本忠 使用指纹 'Fluorescence' 31次",
"num": 31
},
{
"source": "1000471673",
"target": "859422",
"label": "唐本忠 使用指纹 'SILOLE' 28次",
"num": 28
},
{
"source": "1000504422",
"target": "282120",
"label": "黄维 使用指纹 'Organic light emitting diodes' 31次",
"num": 31
},
{
"source": "1000510235",
"target": "282120",
"label": "黄维 使用指纹 'polyfluorenones' 23次",
"num": 23
},
{
"source": "1000502398",
"target": "1949898",
"label": "Markus Antonietti 使用指纹 'Carbon nitride' 31次",
"num": 31
},
{
"source": "1000126858",
"target": "279845",
"label": "Fei Liu 使用指纹 'Alzheimer Disease' 29次",
"num": 29
},
{
"source": "1000432446",
"target": "279845",
"label": "Fei Liu 使用指纹 'Tau' 19次",
"num": 19
},
{
"source": "1000271963",
"target": "863786",
"label": "Haibo Li 使用指纹 'rock mechanics' 29次",
"num": 29
},
{
"source": "1000503939",
"target": "863786",
"label": "Haibo Li 使用指纹 'Magnetic properties' 25次",
"num": 25
},
{
"source": "1000147986",
"target": "279789",
"label": "刘磊 使用指纹 'Apoptosis' 29次",
"num": 29
},
{
"source": "1000148461",
"target": "2059359",
"label": "于吉红 使用指纹 'Zeolites' 29次",
"num": 29
},
{
"source": "1000327902",
"target": "2059359",
"label": "于吉红 使用指纹 'aluminium phosphate' 23次",
"num": 23
},
{
"source": "1000288041",
"target": "249990",
"label": "Yong Huang 使用指纹 'numerical simulation' 28次",
"num": 28
},
{
"source": "1000154906",
"target": "249990",
"label": "Yong Huang 使用指纹 'MicroRNAs' 26次",
"num": 26
},
{
"source": "1000147986",
"target": "664491",
"label": "Lì Lì 使用指纹 'Apoptosis' 28次",
"num": 28
},
{
"source": "1000479729",
"target": "664491",
"label": "Lì Lì 使用指纹 'Mechanical properties' 25次",
"num": 25
},
{
"source": "1000504075",
"target": "410185",
"label": "Bin Wang 使用指纹 'Microstructure' 27次",
"num": 27
},
{
"source": "1000479729",
"target": "410185",
"label": "Bin Wang 使用指纹 'Mechanical properties' 27次",
"num": 27
},
{
"source": "1000493906",
"target": "1132813",
"label": "孙剑 使用指纹 'solar cells' 27次",
"num": 27
},
{
"source": "1000450704",
"target": "1132813",
"label": "孙剑 使用指纹 'zinc oxides' 17次",
"num": 17
},
{
"source": "1000505597",
"target": "368756",
"label": " Van Tendeloo G. 使用指纹 'Transmission electron microscopy' 27次",
"num": 27
},
{
"source": "1000159398",
"target": "368756",
"label": " Van Tendeloo G. 使用指纹 'Electron Microscope Tomography' 19次",
"num": 19
},
{
"source": "1000503939",
"target": "2042959",
"label": "Hui Xu 使用指纹 'Magnetic properties' 26次",
"num": 26
},
{
"source": "1000470171",
"target": "2042959",
"label": "Hui Xu 使用指纹 'PHOTOCATALYTIC' 26次",
"num": 26
},
{
"source": "1000477257",
"target": "2059769",
"label": "Li li ZHANG 使用指纹 'Composites' 26次",
"num": 26
},
{
"source": "1000156596",
"target": "2059769",
"label": "Li li ZHANG 使用指纹 'Chitosan' 24次",
"num": 24
},
{
"source": "1000440657",
"target": "1912768",
"label": "Yury Gogotsi 使用指纹 'Supercapacitors' 26次",
"num": 26
},
{
"source": "1000289566",
"target": "1912768",
"label": "Yury Gogotsi 使用指纹 'energy storage' 14次",
"num": 14
},
{
"source": "1000496548",
"target": "247246",
"label": "Lei Chen 使用指纹 'measurement' 25次",
"num": 25
},
{
"source": "1000273808",
"target": "247246",
"label": "Lei Chen 使用指纹 'sorption' 22次",
"num": 22
},
{
"source": "1000467471",
"target": "66587",
"label": "Kimoon Kim 使用指纹 'CUCURBITURIL' 25次",
"num": 25
},
{
"source": "1000285116",
"target": "66587",
"label": "Kimoon Kim 使用指纹 'supramolecular chemistry' 15次",
"num": 15
},
{
"source": "1000475770",
"target": "2053105",
"label": "jun Wang 使用指纹 'Diesel engines' 25次",
"num": 25
},
{
"source": "1000504075",
"target": "2053105",
"label": "jun Wang 使用指纹 'Microstructure' 22次",
"num": 22
},
{
"source": "1000131668",
"target": "925614",
"label": "Xiaogang Qu 使用指纹 'DNA' 25次",
"num": 25
},
{
"source": "1000299847",
"target": "925614",
"label": "Xiaogang Qu 使用指纹 'graphene' 24次",
"num": 24
},
{
"source": "1000522004",
"target": "2036010",
"label": "张东 使用指纹 'lithium ion battery' 20次",
"num": 20
},
{
"source": "1000299847",
"target": "2036010",
"label": "张东 使用指纹 'graphene' 15次",
"num": 15
},
{
"source": "1000440657",
"target": "751085",
"label": "Jieshan Qiu 使用指纹 'Supercapacitors' 24次",
"num": 24
},
{
"source": "1000444997",
"target": "1896395",
"label": "Ulrich Wiesner 使用指纹 'block copolymers' 10次",
"num": 10
},
{
"source": "1000133286",
"target": "339333",
"label": "田禾 使用指纹 'Fluorescence' 24次",
"num": 24
},
{
"source": "1000493906",
"target": "339333",
"label": "田禾 使用指纹 'solar cells' 14次",
"num": 14
},
{
"source": "1000246717",
"target": "376039",
"label": "Möhwald H. 使用指纹 'Nanoparticles' 24次",
"num": 24
},
{
"source": "1000247366",
"target": "376039",
"label": "Möhwald H. 使用指纹 'Polyelectrolytes' 19次",
"num": 19
},
{
"source": "1000147986",
"target": "2080179",
"label": "赵鑫 使用指纹 'Apoptosis' 23次",
"num": 23
},
{
"source": "1000146862",
"target": "2080179",
"label": "赵鑫 使用指纹 'Cytokines' 20次",
"num": 20
},
{
"source": "1000300136",
"target": "647027",
"label": "Ulrich Schubert 使用指纹 'ink jet printing' 23次",
"num": 23
},
{
"source": "1000472063",
"target": "647027",
"label": "Ulrich Schubert 使用指纹 'TERPYRIDINE' 22次",
"num": 22
},
{
"source": "1000126858",
"target": "417822",
"label": "lin Li 使用指纹 'Alzheimer Disease' 23次",
"num": 23
},
{
"source": "1000445667",
"target": "417822",
"label": "lin Li 使用指纹 'crystal structure' 11次",
"num": 11
},
{
"source": "1000356523",
"target": "750843",
"label": "Jonathan Hill 使用指纹 'interface' 15次",
"num": 15
},
{
"source": "1000156764",
"target": "750843",
"label": "Jonathan Hill 使用指纹 'Nanostructure' 12次",
"num": 12
},
{
"source": "1000148461",
"target": "1961462",
"label": "肖丰收 使用指纹 'Zeolites' 21次",
"num": 21
},
{
"source": "1000502419",
"target": "1961462",
"label": "肖丰收 使用指纹 'Heterogeneous catalysis' 16次",
"num": 16
},
{
"source": "1000247373",
"target": "413404",
"label": "Changsik Ha 使用指纹 'Polyimides' 21次",
"num": 21
},
{
"source": "1000147986",
"target": "418171",
"label": "李静 使用指纹 'Apoptosis' 21次",
"num": 21
},
{
"source": "1000530619",
"target": "418171",
"label": "李静 使用指纹 'Engineering vehicle' 17次",
"num": 17
},
{
"source": "1000004999",
"target": "197020",
"label": "Bin Xu 使用指纹 'Neural network' 21次",
"num": 21
},
{
"source": "1000504075",
"target": "197020",
"label": "Bin Xu 使用指纹 'Microstructure' 19次",
"num": 19
},
{
"source": "1000274062",
"target": "413873",
"label": "徐骏 使用指纹 'stable isotopes' 19次",
"num": 19
},
{
"source": "1000445667",
"target": "413873",
"label": "徐骏 使用指纹 'crystal structure' 18次",
"num": 18
},
{
"source": "1000279202",
"target": "738062",
"label": "Christopher Jones 使用指纹 'membrane' 10次",
"num": 10
},
{
"source": "1000012834",
"target": "738062",
"label": "Christopher Jones 使用指纹 'Hollow Fiber' 10次",
"num": 10
},
{
"source": "1000135040",
"target": "2108019",
"label": "李和兴 使用指纹 'Hydrogenation' 19次",
"num": 19
},
{
"source": "1000439165",
"target": "2108019",
"label": "李和兴 使用指纹 'Photocatalysts' 14次",
"num": 14
},
{
"source": "1000147986",
"target": "846589",
"label": "Chen Chen 使用指纹 'Apoptosis' 18次",
"num": 18
},
{
"source": "1000242280",
"target": "846589",
"label": "Chen Chen 使用指纹 'Power quality' 13次",
"num": 13
},
{
"source": "1000485674",
"target": "2043809",
"label": "王琪 使用指纹 'Nanocomposites' 18次",
"num": 18
},
{
"source": "1000479729",
"target": "958442",
"label": "Liping Wang 使用指纹 'Mechanical properties' 18次",
"num": 18
},
{
"source": "1000504075",
"target": "958442",
"label": "Liping Wang 使用指纹 'Microstructure' 16次",
"num": 16
},
{
"source": "1000139264",
"target": "1444648",
"label": "苏宝连 使用指纹 'Palladium' 12次",
"num": 12
},
{
"source": "1000140079",
"target": "1444648",
"label": "苏宝连 使用指纹 'Photosynthesis' 10次",
"num": 10
},
{
"source": "1000502419",
"target": "2022440",
"label": "Arne faunce Thomas 使用指纹 'Heterogeneous catalysis' 17次",
"num": 17
},
{
"source": "1000502398",
"target": "2022440",
"label": "Arne faunce Thomas 使用指纹 'Carbon nitride' 12次",
"num": 12
},
{
"source": "1000606324",
"target": "413357",
"label": "王鹏 使用指纹 'MICROWAVE' 16次",
"num": 16
},
{
"source": "1000439165",
"target": "413357",
"label": "王鹏 使用指纹 'Photocatalysts' 16次",
"num": 16
},
{
"source": "1000502419",
"target": "1894957",
"label": "Ferdi Schüth 使用指纹 'Heterogeneous catalysis' 13次",
"num": 13
},
{
"source": "1000246717",
"target": "1894957",
"label": "Ferdi Schüth 使用指纹 'Nanoparticles' 12次",
"num": 12
},
{
"source": "1000155127",
"target": "297551",
"label": "Wei Feng 使用指纹 'Carbon Nanotubes' 16次",
"num": 16
},
{
"source": "1000430753",
"target": "297551",
"label": "Wei Feng 使用指纹 'stabilization' 12次",
"num": 12
},
{
"source": "1000504075",
"target": "312261",
"label": "Chao Wang 使用指纹 'Microstructure' 16次",
"num": 16
},
{
"source": "1000503939",
"target": "312261",
"label": "Chao Wang 使用指纹 'Magnetic properties' 15次",
"num": 15
},
{
"source": "1000485674",
"target": "2001081",
"label": "Chaobin He 使用指纹 'Nanocomposites' 16次",
"num": 16
},
{
"source": "1000504075",
"target": "46964",
"label": "Kun Zhang 使用指纹 'Microstructure' 15次",
"num": 15
},
{
"source": "1000147986",
"target": "46964",
"label": "Kun Zhang 使用指纹 'Apoptosis' 11次",
"num": 11
},
{
"source": "1000134819",
"target": "400352",
"label": "Hao Wu 使用指纹 'HIV' 15次",
"num": 15
},
{
"source": "1000146103",
"target": "400352",
"label": "Hao Wu 使用指纹 'HIV-1' 14次",
"num": 14
},
{
"source": "1000246717",
"target": "842384",
"label": "Thomas Bein 使用指纹 'Nanoparticles' 15次",
"num": 15
},
{
"source": "1000302306",
"target": "1872521",
"label": "Christof Woell 使用指纹 'surface chemistry' 15次",
"num": 15
},
{
"source": "1000302479",
"target": "1872521",
"label": "Christof Woell 使用指纹 'thin films' 13次",
"num": 13
},
{
"source": "1000156764",
"target": "2015870",
"label": "殷亚东 使用指纹 'Nanostructure' 15次",
"num": 15
},
{
"source": "1000439165",
"target": "2015870",
"label": "殷亚东 使用指纹 'Photocatalysts' 13次",
"num": 13
},
{
"source": "1000445667",
"target": "2028923",
"label": "Wei Xu 使用指纹 'crystal structure' 15次",
"num": 15
},
{
"source": "1000503939",
"target": "2028923",
"label": "Wei Xu 使用指纹 'Magnetic properties' 13次",
"num": 13
},
{
"source": "1000246717",
"target": "1987626",
"label": "Clément Sánchez 使用指纹 'Nanoparticles' 15次",
"num": 15
},
{
"source": "1000247356",
"target": "2024770",
"label": "危岩 使用指纹 'Polyanilines' 15次",
"num": 15
},
{
"source": "1000503130",
"target": "2024770",
"label": "危岩 使用指纹 'Electrospinning' 13次",
"num": 13
},
{
"source": "1000147986",
"target": "303500",
"label": "Yuan Gao 使用指纹 'Apoptosis' 14次",
"num": 14
},
{
"source": "1000186164",
"target": "1898497",
"label": "Serge Kaliaguine 使用指纹 'perovskite' 14次",
"num": 14
},
{
"source": "1000156764",
"target": "2037784",
"label": "俞书宏 使用指纹 'Nanostructure' 14次",
"num": 14
},
{
"source": "1000485674",
"target": "2037784",
"label": "俞书宏 使用指纹 'Nanocomposites' 10次",
"num": 10
},
{
"source": "1000160677",
"target": "1924415",
"label": "Craig Hawker 使用指纹 'Click Chemistry' 14次",
"num": 14
},
{
"source": "1000444997",
"target": "1924415",
"label": "Craig Hawker 使用指纹 'block copolymers' 10次",
"num": 10
},
{
"source": "1000504067",
"target": "1983026",
"label": "Shilun Qiu 使用指纹 'Microporous materials' 12次",
"num": 12
},
{
"source": "1000439165",
"target": "2018953",
"label": "逯高清 使用指纹 'Photocatalysts' 13次",
"num": 13
},
{
"source": "1000156764",
"target": "300334",
"label": "乔世璋 使用指纹 'Nanostructure' 13次",
"num": 13
},
{
"source": "1000270857",
"target": "241874",
"label": "Meng Li 使用指纹 'polymorphism' 12次",
"num": 12
},
{
"source": "1000288041",
"target": "241874",
"label": "Meng Li 使用指纹 'numerical simulation' 11次",
"num": 11
},
{
"source": "1000133286",
"target": "404781",
"label": "Lihua Wang 使用指纹 'Fluorescence' 12次",
"num": 12
},
{
"source": "1000440657",
"target": "2059658",
"label": "赵修松 使用指纹 'Supercapacitors' 12次",
"num": 12
},
{
"source": "1000445667",
"target": "2006498",
"label": "朱广山 使用指纹 'crystal structure' 11次",
"num": 11
},
{
"source": "1000447535",
"target": "1821566",
"label": "Stefan Kaskel 使用指纹 'lithium sulfur batteries' 10次",
"num": 10
},
{
"source": "1000504075",
"target": "413816",
"label": "Wei Zhou 使用指纹 'Microstructure' 11次",
"num": 11
}
]
} ]
};
var linkList= option.series[0].links;
for(var i in linkList){
let linkObj = linkList[i];
linkObj.itemStyle={normal:{
lineWidth:linkObj.num/20,
text:linkObj.num,
color:'#cccccc',
brushType: 'stroke',
//shadowColor: '#cccccc',
textPosition: 'inside',
textFont: 'normal 16px 宋体',
strokeColor: '#cccccc'
}};
}
myChart.setOption(option);
function contains(arrays, obj) {
var i = arrays.length;
while (i--) {
if (arrays[i].name == obj) {
return i;
}
}
return -1;
}
var ecConfig = require('echarts/config');
function openOrFold(param) {
var option = myChart.getOption();
var nodesOption = option.series[0].nodes;
var linksOption = option.series[0].links;
var data = param.data;
var linksNodes = [];
var categoryLength = option.series[0].categories.length;
if (data.category == (categoryLength - 1)) {
// alert(data.label);
return;
}
if (data != null && data != undefined) {
if (data.flag) {
for ( var m in linksOption) {
if (linksOption[m].target == data.id) {
linksNodes.push(linksOption[m].source);
}
}
if (linksNodes != null && linksNodes != undefined) {
for ( var p in linksNodes) {
let index = contains(nodesOption,linksNodes[p]);
nodesOption[index].ignore = false;
nodesOption[index].flag = true;
}
}
nodesOption[contains(nodesOption,data.id)].flag = false;
myChart.setOption(option);
} else {
for ( var m in linksOption) {
if (linksOption[m].target == data.id) {
linksNodes.push(linksOption[m].source);
}
if (linksNodes != null && linksNodes != undefined) {
for ( var n in linksNodes) {
if (linksOption[m].target == linksNodes[n]) {
linksNodes.push(linksOption[m].source);
}
}
}
}
if (linksNodes != null && linksNodes != undefined) {
for ( var p in linksNodes) {
let index = contains(nodesOption,linksNodes[p]);
nodesOption[index].ignore = true;
nodesOption[index].flag = true;
}
}
nodesOption[contains(nodesOption,data.id)].flag = true;
myChart.setOption(option);
}
}
}
myChart.on(ecConfig.EVENT.CLICK, openOrFold);
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/jspang582/knowledge-neo4j.git
git@gitee.com:jspang582/knowledge-neo4j.git
jspang582
knowledge-neo4j
knowledge-neo4j
master

搜索帮助