Skip to content

Instantly share code, notes, and snippets.

@Fil
Last active August 5, 2017 06:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fil/7a339c693b894640ee71698055cb84c7 to your computer and use it in GitHub Desktop.
Save Fil/7a339c693b894640ee71698055cb84c7 to your computer and use it in GitHub Desktop.
UNGA Streamgraph [UNLISTED]
license: mit
border: no

A StreamGraph visualization of the debates at the UNGA.

Data based on https://dataverse.harvard.edu/dataset.xhtml?persistentId=doi:10.7910/DVN/0TJX8Y

Les chercheurs ont procédé à une analyse informatique de l'ensemble des motions présentées (depuis 1970) lors de l'Assemblée générale des Nations unies. La méthode employée recherche des similarités statistiques entre les différents textes, et à partir de là établit des "thèmes", constitués de mots dont la fréquence est relativement plus élevée dans tel ou tel groupe de textes.

Le graphique représente la part relative, année après année, des trente thèmes principaux extraits de cette masse de textes. Les bandes reflètent l'évolution historique des débats.

On repère assez vite la question de la guerre froide et du désarmement nucléaire, qui s'arrête en 1989 à la chute du mur de Berlin. De même, les années 1980 sont l'objet d'importants débats sur l'apartheid en Afrique du Sud.

Sur le plus long terme, les questions de l'organisation politique de la planète, présentes dans les années 1970, cèdent rapidement le pas à une proccupation croissante pour l'économie.

La rupture de 1989 ouvre l'ère du "développement" puis de la lutte contre la pauvreté. Le terrorisme fait irruption dans les débats à partir de 2001. Mais le sujet qui monte le plus, c'est celui du changement climatique. Au point qu'il supplante désormais quasi totalement la lutte contre la pauvreté et la question des droits humains.

See also http://blockbuilder.org/Fil/c3ee2144ccedc2a6c9a61349feb04c30

forked from curran's block: Refugees Streamgraph

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<script src="https://unpkg.com/d3@4.10.0"></script>
<script src="https://unpkg.com/d3-area-label@1.1.0"></script>
<title>Refugees Streamgraph</title>
<style>
body {
margin: 0px;
}
.area-label {
font-family: sans-serif;
fill-opacity: 0.7;
fill: white;
}
path:hover {
fill-opacity: 1;
fill:black;
}
path {
fill-opacity: 0.8;
stroke-width: 0.5;
}
text {
pointer-events: none;
}
.axis .tick text, .legend text, .tooltip text {
fill: #585858;
font-family: sans-serif;
font-size: 16pt;
}
.axis .tick line{
stroke: #ddd;
}
.axis .domain {
display: none;
}
</style>
</head>
<body>
<svg width="960" height="500"></svg>
<script>
// Find the min and max year, then give the
// full range of years between them.
function computeYears (rawData) {
var allYearsSet = d3.set();
rawData.forEach(function (d) {
d.values.forEach(function (d) {
allYearsSet.add(d.key);
});
});
var yearsExtent = d3.extent(allYearsSet
.values()
.map(function (yearStr) {
return +yearStr;
}));
return d3
.range(yearsExtent[0], yearsExtent[1] + 1)
.map(function (year) {
return new Date(year + "");
});
}
var bisectDate = d3.bisector(function (d) {
return d.date;
}).left;
function getInterpolatedValue (values, date, value){
const i = bisectDate(values, date, 0, values.length - 1);
if (i > 0) {
const a = values[i - 1];
const b = values[i];
const t = (date - a.date) / (b.date - a.date);
return value(a) * (1 - t) + value(b) * t;
}
return value(values[i]);
}
// Interpolate values, create data structure
// for d3.stack.
function interpolateValues (years, rawData) {
var value = function (d) {
return d.value;
};
return years.map(function (date) {
// Create a new row object with the date.
var row = {
date: date
};
// Assign values to the new row object for each key.
// Value for `key` here will be country name.
rawData.forEach(function (d){
row[d.key] = getInterpolatedValue(d.values, date, value);
});
return row;
});
}
d3.csv('un.csv', function (rawData) {
var keys = rawData.map(d => d.topic);
var data = Object.keys(rawData[0]).map(d => +d)
.filter(d => !isNaN(d))
.map(y => {
var o = { date: new Date(y,1,1)};
keys.forEach((key,i) => { o[key] = +rawData[i][y]; })
return o;
})
render(data, keys);
});
var margin = { top: 0, bottom: 30, left: 0, right: 30 };
var svg = d3.select('svg');
var width = +svg.attr('width');
var height = +svg.attr('height');
var g = svg.append('g')
.attr('transform', `translate(${margin.left},${margin.top})`);
var xAxisG = g.append('g')
.attr('class', 'axis');
var marksG = g.append('g');
var stack = d3.stack()
.offset(d3.stackOffsetWiggle)
.order(d3.stackOrderInsideOut)
;
var xValue = function (d) { return d.date; };
var xScale = d3.scaleTime();
var yScale = d3.scaleLinear();
var colorScale = d3.scaleOrdinal()
.range(d3.schemeCategory10);
var xAxis = d3.axisBottom()
.scale(xScale);
var area = d3.area()
.x(d => xScale(xValue(d.data)))
.y0(d => yScale(d[0]))
.y1(d => yScale(d[1]))
.curve(d3.curveBasis);
// Render StreamGraph
function render(data, keys) {
stack.keys(keys);
var stacked = stack(data);
var innerWidth = width - margin.right - margin.left;
var innerHeight = height - margin.top - margin.bottom;
xScale
.domain(d3.extent(data, xValue))
.range([0, innerWidth]);
yScale
.domain([
d3.min(stacked, function (series) {
return d3.min(series, function (d) { return d[0]; });
}),
d3.max(stacked, function (series) {
return d3.max(series, function (d) { return d[1]; });
})
])
.range([innerHeight, 0]);
colorScale.domain(d3.range(keys.length));
var paths = marksG.selectAll('path').data(stacked);
paths
.enter().append('path')
.merge(paths)
.attr('fill', function (d) { return colorScale(d.index); })
.attr('stroke', function (d) { return colorScale(d.index); })
.attr('d', area);
var labels = marksG.selectAll('text').data(stacked)
labels
.enter().append('text')
.attr('class', 'area-label')
.merge(labels)
.text(function (d) { return d.key; })
.attr('transform', d3.areaLabel(area));
xAxis.tickSize(-innerHeight);
xAxisG
.attr('transform', `translate(0,${innerHeight})`)
.call(xAxis);
}
</script>
</body>
</html>
topic 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014
1: countries people peace china 0.014888545723109978 0.012909200398763226 0.009251941487977209 0.012020375130914977 0.013814285073756894 0.011908141251277394 0.006050437045746492 0.007680618073544492 0.009564394692277725 0.02035528812065232 0.020697876436986926 0.014873812120267954 0.01338446700391508 0.013986626788333683 0.01330716665306395 0.010142094124760657 0.012453068659157652 0.013324155980999482 0.011153333249725138 0.011302950387341354 0.005094142884047386 0.007339424981707208 0.003309948306783416 0.005271105792517879 0.004577466232983187 0.004059678157243683 0.004723005157665025 0.003010703187938773 0.004306739677918717 0.004139778400097407 0.003761489897056647 0.003422206832871653 0.003803411920661075 0.0036437294781848676 0.0043185762629223525 0.0029005807768799265 0.0031977271353442545 0.004229516109569204 0.0034665753659162885 0.0021668654359766853 0.004252126063031516 0.004426903651367538 0.003176576203300877 0.0030001985820170564 0.002673468476513663
2: united nations rights human 0.05332684302403652 0.02768570575524642 0.02404558296696276 0.022988669903836998 0.018226247590010312 0.02778093183452557 0.024549041595708625 0.03307401809578328 0.03359066298825718 0.020259471475384705 0.023337758206384604 0.01811808692942826 0.026406779531791446 0.024182271921970547 0.025690585188867538 0.038762471026907185 0.0355872768050754 0.028721713785572863 0.047075594349758165 0.034139607713861875 0.03214041276797075 0.05010440276265772 0.08313113197594683 0.10465688968125074 0.09858369257146138 0.13903287273308726 0.1273239739562562 0.14375877546322938 0.11058894202999006 0.08459488345035648 0.09595627076602717 0.048805401662049865 0.05630784097525924 0.07154583894361373 0.0662355829787728 0.10501556006316527 0.0711479175482077 0.07006154217449016 0.05102652205279955 0.06248635210723464 0.07917053764977727 0.05908978003477493 0.05930848379574296 0.05930088395832998 0.03964993748883729
3: states caribbean small government 0.0017624546797368069 0.001887546745879531 0.0013960730122523153 0.0027039893363800817 0.0024615522575438284 0.0016038378562507098 0.0019331271888899581 0.003109311874276725 0.003967275936364576 0.006178257286855873 0.007069768841121988 0.006963701511138807 0.005226460912095578 0.0062408321109481265 0.005538778871765954 0.004135846014310189 0.00451862590816533 0.00603750817889039 0.007336619135407653 0.0100708752266359 0.0076251372295028505 0.00971748790891082 0.00793860111826142 0.010574774400742433 0.011800511068362572 0.011481693694173874 0.010503533291809126 0.012843825526527793 0.012652203045216146 0.012162290136233884 0.011192601552571542 0.01084949215143121 0.010629731035593493 0.011332766399735432 0.019741233696503928 0.01380253586082498 0.011479175482077011 0.015349342343429467 0.0131204069404874 0.01332034333898846 0.014679959027132613 0.01333038942400574 0.016095361030103107 0.01714245844537116 0.016057554920521522
4: human people world rights 0.02845944675708339 0.0248973994362662 0.03198663555868949 0.03894125487955822 0.02668699278124019 0.023125544074788992 0.027339941671443695 0.030055308686717266 0.03150366913395718 0.03938830653661154 0.029234246261107624 0.02093005140987693 0.019308551801432608 0.025313851370658946 0.025204597223561883 0.03771440088682858 0.029090203172951027 0.03443631512308699 0.030441743899737052 0.031584803032800396 0.036168873822352676 0.04744971713097639 0.039297394239898725 0.034793368582581335 0.0344745552761861 0.03424964799836547 0.024372319784193616 0.024430889630567384 0.03949539058709364 0.04700767978498406 0.0376455216834326 0.03958333333333333 0.03398912248968619 0.03525618311955212 0.03980752152032459 0.03412642303550073 0.04626125853835459 0.04442500301677326 0.04733984666365048 0.038852401189256376 0.04054408156459182 0.05328291888609831 0.06292595602726118 0.052076792202703934 0.05229170387569209
5: international nations united economic 0.06600812407680945 0.061707091204437 0.04945884424084389 0.059402075597448346 0.0584585033403578 0.06793365126225351 0.06322832240544624 0.07746510775515919 0.07572011226039323 0.06990399172144185 0.08619477213157291 0.08915329490574855 0.07031515063720127 0.070443678204713 0.08739621745550057 0.09232691726292452 0.07620121515515739 0.09052438371529814 0.09495800778392298 0.0975729355529916 0.1075879302345878 0.13944015133938928 0.16591940078067308 0.18188367748159184 0.18610927675213185 0.18979217468164394 0.1996970824016526 0.19583381286684315 0.16850350038122963 0.16172193135543922 0.16602614158921672 0.17147391505078485 0.1760657606204393 0.1712139465665084 0.1717911062868951 0.16437505368386973 0.1678353382095146 0.15760830216000965 0.14483192917670362 0.14749242716924507 0.15772171800185808 0.1611072778958408 0.1486244575119653 0.1438324182459304 0.13413667619217717
6: nations united world time 0.08761078286558345 0.07761713669785589 0.07294126555201673 0.07293630391316766 0.06404967941532529 0.05665947541728171 0.047227719872296445 0.04451463847557234 0.041723976180443476 0.045045321273211585 0.0431218294155031 0.04599626109985979 0.0459478726283647 0.05232697693025737 0.050290479829644526 0.0599133326614935 0.05446720278882652 0.05254034211130089 0.04819176375668343 0.048631943299818695 0.060642808255359414 0.05956757624970999 0.05325807926293209 0.053203570512742236 0.052845945291895506 0.0576749681310823 0.0468894933299875 0.048530325699159854 0.049328804787320074 0.06549688614707487 0.05932640239265463 0.061074561403508774 0.0537619088915594 0.06119339522358444 0.05518954718799157 0.053683869731547616 0.06232243244876987 0.058434898033063835 0.06809038774287426 0.07643379862149284 0.06036351509087877 0.07078629978196671 0.06671341226965838 0.06784527777330521 0.07666547597785318
7: people peoples struggle countries 0.05056566402578219 0.047927493914812436 0.05028229069552831 0.05939731505284204 0.054463525086311255 0.06313633094886643 0.06469699695804444 0.06599565931825763 0.06344461317072007 0.07197746392503306 0.05862267365119716 0.05411668484187568 0.04759853460862538 0.041220734193130514 0.034701766621901366 0.026878968054015923 0.02357615784625933 0.0193531666114326 0.011993595612241913 0.01022333937695731 0.0070601421215336635 0.00845483911266575 0.0043473291838098255 0.0027556282791773006 0.003293642818176971 0.0029270546013387168 0.002491452436111721 0.0029784785360801014 0.00292507104734179 0.0043878043391010636 0.003766593682534336 0.0031798245614035087 0.0029299899649392323 0.0020728509673304516 0.002095438213595389 0.0019028867055613185 0.0044187874025267485 0.004724266924097985 0.004628214377422629 0.005324777854299296 0.0026739560256318637 0.005851019788590511 0.0037555842403573913 0.003595944633186812 0.004085550991248437
8: international organization charter states 0.1612310326305895 0.13886878766870264 0.13215842352595986 0.12046082071789013 0.12412231538358068 0.1163657696529276 0.11755254381964174 0.1065155527368122 0.10128876839536012 0.09840752735565222 0.10446711617360042 0.10314690761800903 0.11012164578242521 0.09225611033852132 0.08863159144364395 0.09410460546205784 0.09304486822051225 0.073482550284243 0.059604282411762 0.05006593044338223 0.05839660819196972 0.05653811147002659 0.06627369272426768 0.06315151071113119 0.058772861695713344 0.056333586508010534 0.05011583461416095 0.04808378409483255 0.0519812388808022 0.05279795807008762 0.04511235983729132 0.04707409972299169 0.0434914578093834 0.04939999527555335 0.03894844989813036 0.036756106746658385 0.03579761832799371 0.03907928080125498 0.038762059647106294 0.03414352823923986 0.028281998141928107 0.03241796152678497 0.03825171444810972 0.032819703629757245 0.029408153241650296
9: european europe union security 0.003105277292869612 0.0023227451913102005 0.002129602900045905 0.0017566409597257926 0.0018383177151055912 0.0018640475379433027 0.0019833382847052818 0.0015773065534410405 0.0013873540098108587 0.001832014257516816 0.0029106388739512865 0.0020875525782832216 0.003007788227311022 0.0029451545920408436 0.002177671264384873 0.0023783130101783733 0.0030606049341412337 0.002179621179289775 0.0030684207666035425 0.0038445689797263886 0.012016481320710516 0.01693198650795067 0.03448412279776348 0.02910301653784003 0.03202175526962343 0.026880932393477865 0.026057186899261973 0.025816549660490275 0.029222984681499965 0.027364025415894402 0.02716745009773749 0.016170360110803323 0.02176740959153586 0.016464696572413957 0.019253652505528823 0.01619435873378747 0.023629329625823613 0.02137082176903584 0.024149863660263386 0.019053858084311783 0.021570308964005813 0.021886125907322054 0.01861324919124795 0.01922488608369427 0.024105867119128415
10: south africa international nations 0.01565227608432926 0.013111618280358887 0.008920669925747846 0.01578596591450062 0.015410482894677845 0.025325498656371827 0.05660882627379274 0.054151446138893576 0.0696896938280635 0.07495927792576126 0.12822605209817953 0.16071818040193175 0.18014707283879552 0.17124949993332444 0.1586286977748429 0.16307971379623099 0.1842145479928462 0.13282093116135996 0.1058981401356961 0.08515740893357508 0.05184174624829468 0.02024699730515946 0.012989239371241692 0.005539749022097941 0.005594680951423896 0.004357269444481458 0.004153914403373319 0.004718609736448383 0.008091310274716388 0.007165694855942025 0.005782588946221413 0.004657202216066482 0.007458156274390773 0.002970495830675832 0.004388230718775939 0.0036868429920250546 0.004080275645288037 0.0031736454688065644 0.0035277142612587277 0.0046304850531078 0.00413301889039758 0.006143570778020037 0.004345216278093842 0.00286602154346531 0.003784157885336667
11: countries economic developing development 0.02657949509869746 0.026865913334783994 0.030193036671761937 0.033990288489003144 0.06940770299959646 0.0295503576700352 0.03647417685184798 0.042929095334384874 0.041330428767918335 0.05386428530364295 0.03654468808405504 0.049372955288985824 0.04596693339026148 0.052258396357609586 0.05332512223895768 0.05295172830797138 0.043443242506474355 0.05036496970623975 0.04864324801117006 0.053061644964562386 0.04670166880262378 0.033565042028804455 0.035837992755916585 0.034687539431534645 0.03559021012866946 0.02869757174392936 0.035964743259411285 0.031211877085970768 0.038954737644693975 0.040572534058470985 0.03698202957133306 0.02888965835641736 0.02641946554009688 0.030141969621808047 0.033730170247099185 0.03478714758604286 0.02984948316508493 0.03588150114637384 0.07170981034714664 0.057995845441463835 0.03663141094356702 0.0343057433831038 0.02750553776035442 0.02654558530707757 0.027426772637971067
12: world political international economic 0.062290183966698 0.055260081675615226 0.06548765540185607 0.0678520422736361 0.057566246693269964 0.06420082510124522 0.06461331179835224 0.053463691062066804 0.054889925981284636 0.06183623018990859 0.05075943607311946 0.052948278548060446 0.05055295270262543 0.05014382870096965 0.049422379189327556 0.051694044139877056 0.051885720894307936 0.04669402877269908 0.03448838055106161 0.046221361463655845 0.047445808700924665 0.05953188299751932 0.05820761683721912 0.04123266538857615 0.047534279725844224 0.04349718620775425 0.0379991306802651 0.03620669812406491 0.03839560084101569 0.04391862945375669 0.0452603696161443 0.02276662049861496 0.02547170980090935 0.03225025393900739 0.028465454292165616 0.02535860824980674 0.02188841201716738 0.026710510438035476 0.023128844108044656 0.025823212895928867 0.023208032587722433 0.021886125907322054 0.02719744174063627 0.020276834065939962 0.020288221110912663
13: arab peace international security 0.032521485161810124 0.038702298961090224 0.03170268850535003 0.02641626202037513 0.029668654441106578 0.02797490632451459 0.03037352871028616 0.04314324661579201 0.03239014461873604 0.04425195945039572 0.047363690720176294 0.04967284623773174 0.055070353272161 0.042580915550644846 0.04557899344843705 0.033292351103496924 0.034509249965924436 0.037325481598558814 0.03982676381938958 0.032458381407614964 0.05608150628614476 0.04174772009351632 0.03873035130288005 0.03665758978178843 0.036763288392677694 0.034698255759723906 0.04568857740754516 0.04075037403613765 0.04582611307502137 0.04074840699703722 0.046878269612571646 0.03621306555863343 0.046985145632270776 0.035740438901093706 0.0331206937583803 0.035005186687721755 0.0445445203409297 0.03299746591046217 0.02991526149105538 0.031775093925497905 0.03661354486767193 0.04359009742499931 0.04359558679011755 0.033345677620880095 0.032366270762636186
14: development global climate change 0.001065865449174164 0.0004756820217498014 0.0005489643031229444 0.0006855184233076263 0.0008519033313903959 0.000520419363385186 0.0005355850220301183 0.000683636782953558 0.0011408899736840012 0.0013069390414502807 0.0012860962466296382 0.0016007166225268734 0.0009568502472180818 0.000826776903587145 0.000856971144928289 0.001080318452081024 0.0012267201962752315 0.0013638565273918475 0.0027925137221950494 0.006321081259271469 0.0030913959972623003 0.004225188728070958 0.0042726025952104655 0.00707427171227496 0.010237773940435516 0.00770184018015377 0.008908286767967809 0.010984002762113016 0.00923268870867124 0.008378767175796276 0.008288547615766613 0.008996999076638966 0.013442025843378719 0.015295396026740368 0.03011974761868829 0.05481370871297465 0.05997702955933023 0.1550862797152166 0.18286032207970065 0.2003650636341749 0.20406036351509088 0.1779703585129578 0.1683532267746065 0.21465105919354233 0.219860689408823
15: development poverty world human 0.001796025245065127 0.0005009842569492589 0.0010742663518009342 0.00085213748452823 0.000421467963951038 0.0007191249384958934 0.0010586172701064058 0.0008360136562624836 0.0014271062737022874 0.0009696644501082728 0.0015380507744781344 0.0014332450537466895 0.0011474578661858272 0.0010363286533442554 0.0016211964949509189 0.0017776881991333267 0.001966056610865354 0.0039726039037737615 0.002545869546132912 0.004178341849348937 0.0025493681701048688 0.0038637945496403903 0.010426556950451877 0.008380854692505262 0.018178611419875885 0.03325915759457407 0.07083163427629133 0.10942110714696743 0.11199371548716527 0.12436020581643374 0.16518401698539806 0.14531971375807942 0.1469331119838448 0.12944393262939077 0.1375733548488208 0.17009692829156453 0.14051260351810432 0.06209122722336189 0.041287096024749025 0.024003493860547932 0.03073560589818719 0.01608478458863467 0.01412460890397497 0.018221241835327206 0.015036167172709412
16: korea republic nuclear united 0.00042802470793608166 0.001184144607334612 0.0008660385126853346 0.0027753975054746263 0.0006546204546473568 0.002100601794027478 0.0011130126239063396 0.0011613588722464057 0.001121013841738287 0.0010079911082153193 0.0023051959040466907 0.0032520641844524067 0.001482927275569059 0.0018211952069799784 0.0018141077483546895 0.001660788068124559 0.0012762846486499882 0.0020946456947170742 0.0023870139751098404 0.0031028514916762815 0.0044372786528311765 0.008494994021380257 0.011978232584309174 0.009019899950748742 0.009663539825186728 0.011992484709581995 0.011816474953285267 0.012857636091610081 0.011580139091056122 0.012550112513585057 0.01243282142364992 0.013054016620498614 0.012246490825972223 0.011746155481539225 0.011243390082366394 0.010479091371598094 0.011013721815873784 0.012567877398334742 0.010638167789584378 0.014339385998801786 0.01329236046594726 0.012651450335329672 0.011952000764928049 0.014931220850038375 0.012446419003393463
17: issues international nations assembly 0.04851785954075467 0.0481299117964081 0.04822840700970626 0.0487098924116919 0.04682778101600681 0.04502573710306196 0.05163374353009109 0.04979017292715974 0.05563726854244349 0.051365387195063526 0.05614073352612242 0.049645583424209376 0.055028419595988094 0.054540605414055206 0.058685829184504774 0.058724176156404316 0.06079493120867047 0.060022433527927195 0.06743000948953017 0.06498269325861217 0.06915907598035838 0.071163421555155 0.06646710271828955 0.06566698822447177 0.064408559369655 0.06291168645426644 0.06124671204455936 0.06293014155829209 0.059065178715833735 0.05778102466279746 0.05952034624080681 0.05212373037857802 0.05179825811167412 0.05645713745777526 0.05012799006263097 0.05132508308611223 0.05311007676963066 0.04782792325328828 0.04788398283219819 0.0456945447622887 0.04540365420805641 0.043706013854773275 0.04312813076020037 0.03793453233934983 0.03641833363100554
18: cyprus problem solution security 0.0004448099906002417 0.002980603306496096 0.003767030907636756 0.0026563838903170523 0.012895126216204098 0.007068241171795163 0.006464678586222912 0.005938579765174884 0.006837389389325722 0.005952130004024299 0.003527363389878949 0.003271537622682661 0.0044983398076387906 0.0039243327681786145 0.004511155464211253 0.0029789378212234205 0.0047581874279766555 0.00494132442790255 0.00330670412313815 0.005196143069062139 0.00457508233770171 0.0038102546713543804 0.003120933994443858 0.0024259297701472245 0.004610279610997404 0.003455612260761034 0.004418295147493088 0.00563931407526758 0.005563642244864953 0.004081154087241997 0.0052722103984525325 0.0036068790397045243 0.003431743003332631 0.0031712848132662464 0.004243117269080968 0.003726486465057582 0.003596687420661307 0.003481356341257391 0.004010711534463995 0.004232946433070734 0.005204983444103004 0.004095713852013358 0.0034899842233589904 0.0031182743759425938 0.002863234506161815
19: states nuclear soviet peace 0.05121189740835236 0.06573014660115074 0.07429947895715712 0.08400933066742836 0.050688248217728556 0.06978350554483176 0.05353339665510417 0.05455915723234179 0.04820359519474634 0.044907345304026215 0.05676121855739111 0.06391961364698551 0.0569383079380449 0.06642409464119026 0.06295584558196131 0.06093318552856999 0.05321983073739514 0.05070487164453055 0.03842632654852829 0.032046316136476016 0.02435450457278561 0.028835686113540236 0.014070577065091254 0.009776985415928915 0.007280468246904263 0.00726211574080243 0.007160685239040522 0.006458740936816665 0.006547907857951526 0.004771117153924898 0.006078608503927363 0.004016620498614959 0.005531672386238339 0.003956724068693455 0.003035773367618804 0.003455589399335311 0.0033065344858852685 0.003734765295040425 0.0035888531566011664 0.00492164009876875 0.0064377426808642415 0.004509701101206083 0.0030012801920819322 0.004336601885992454 0.004035318806929809
20: nations united countries world 0.17748757889082853 0.211799950407619 0.20277132324059308 0.17254593925545084 0.22979419808994306 0.2350497710154801 0.21799565674021198 0.17118100313402163 0.15553868292799275 0.11969798593411647 0.06531639095821691 0.04753466272004985 0.018180154697143555 0.00853828129464881 0.009014891264830053 0.015305855084147939 0.007149672255058672 0.005090031525904776 0.0034404772355786316 0.0051302126256799075 0.004621016899325221 0.003939642710545571 0.003850617153708197 0.0026172363124239355 0.004688211383781168 0.005902967473716471 0.0036789252698700052 0.0032224651858671883 0.0029389339433007556 0.0035760830841800035 0.0024447132438129363 0.004137811634349031 0.003320242328134098 0.0020905676422649 0.0015382025667666983 0.001942530178593846 0.001632110258115215 0.002491854712199831 0.00174245851725951 0.0017469302739656998 0.0027394649705805283 0.002748875334639693 0.0021354241366671445 0.0017282002565464976 0.0014846401143061262
21: africa african peace government 0.00502719215791594 0.006411586399542536 0.007633443283942321 0.005488907931067314 0.006026095144151011 0.006509973127436509 0.006134122205438699 0.008273652391287337 0.006388188807352578 0.0056761780656535655 0.008479962094005363 0.0026951238510671445 0.005134969254991061 0.003851942163717067 0.008877627488369677 0.007243777083543283 0.006195556546844603 0.00877796755635999 0.01376608935207829 0.012423767924839294 0.013987074014359144 0.01883711384362786 0.02664662235819531 0.03590457466857159 0.039753407464223164 0.031429193261111925 0.03467868777530325 0.0416066290712395 0.04805341835909521 0.053402239448751075 0.041422322936922315 0.039387119113573406 0.043361373688318446 0.040216852101197645 0.04206548679757835 0.03351855644900197 0.03754458078945778 0.035151442017617954 0.033803695234834494 0.028538793610266573 0.028788203625622334 0.034178787293351366 0.03275379409624282 0.027237938826004584 0.028743972137881765
22: america american peace latin 0.024053310057741372 0.020449266488201567 0.02009871892554435 0.027644482528801296 0.021315518091736537 0.023759509481094582 0.019339640404868803 0.02196697951972457 0.02657438841142003 0.02014832416687427 0.026579322430345855 0.032068858077582175 0.04205566504904334 0.0361648219762635 0.03389673312212024 0.03421545903456616 0.03217972070431087 0.031670363100245576 0.027001266664158422 0.022338058348442394 0.021387131891906788 0.020697624614066712 0.015762914512782642 0.016501206859357128 0.017083464928651412 0.014586414735654545 0.014576789163078108 0.013396248129819311 0.015267669416141032 0.012739514139733305 0.011105837199450833 0.011565096952908588 0.015758762094726018 0.01112016630052205 0.010134723326696812 0.010598021790695676 0.01131596445626549 0.011379268734161941 0.010430295545420085 0.012553261776381726 0.011231806379380167 0.011922832776750476 0.01754022512257441 0.01587582720144267 0.013746874441864619
23: government country united assembly 0.04441385792936753 0.04158675377382838 0.0469553777205677 0.045567932971531944 0.02670941128996099 0.01940218008402407 0.02377495386855572 0.024825075467735228 0.022018778969462312 0.024164957936492728 0.03191925421459757 0.033704626888923506 0.03194964909137348 0.034221705751243024 0.02889958969260334 0.02514159024488562 0.0312256049960968 0.031236988128924805 0.02034605432024447 0.02523075655183781 0.02221854745729234 0.022714293362839755 0.026316946232021663 0.027739448630123047 0.029228516466163253 0.02541962592331028 0.025277487755586723 0.027901944987915754 0.029504863565998938 0.03560299615334316 0.026728524546656255 0.03122691597414589 0.02568851666935094 0.02421869463539083 0.02706656063710609 0.01569881532088088 0.022009309073324063 0.024218655725835647 0.0268399750553307 0.030453697949036667 0.022945996807927773 0.02917782132310325 0.031909186042187905 0.032551349552653756 0.03651321664582961
24: terrorism international security people 0.001569423929098966 0.0008602759967815557 0.011395741740690087 0.003394268304294011 0.001067121015110075 0.000993527875553537 0.0030545083287655183 0.002314481156746383 0.0011965431431320015 0.0016327156353601747 0.0028767942358820854 0.004743729552889858 0.004261986360118787 0.0028079934467452805 0.003502081215637683 0.004341429003325607 0.01108178547678938 0.006955243412275558 0.003912863538884081 0.005546398549530245 0.004598049618513466 0.0036808666321631895 0.004466012589232338 0.00921934719695212 0.008523274939192709 0.007888389942302823 0.015670160376048 0.008295546092760963 0.02596058316582334 0.01624795378600322 0.011595800605308957 0.12430747922437674 0.10044971938996741 0.10868589516452885 0.09366202497112243 0.05328743500122234 0.05989844647282839 0.044974055749969835 0.03312505349653343 0.032323809203858925 0.03830486671907382 0.0551044627825463 0.07559507683808492 0.0683819859275122 0.08934073048758708
25: development world peace conference 0.0006042701759097623 0.00044531933951045237 0.0007571921422385439 0.0009092640198038656 0.0004797560866251177 0.0008752507475114493 0.00029289805892272096 0.0006506904319678444 0.0004452253555840005 0.00020696395377805033 0.0002444334971664517 0.00017136625642623463 0.0005641985521445263 0.00070866591736041 0.000382112675011315 0.0007820215660586516 0.0005906430574658521 0.002188118727747045 0.008686891489103761 0.021847700675787046 0.10889247178469552 0.12862509592561527 0.11468333509160601 0.13149272017551358 0.10673781700799416 0.0890020031891126 0.048968691046454835 0.008336977788007826 0.004551650839860447 0.004229969650644191 0.00234263753425916 0.001327331486611265 0.0015981763445123084 0.0020256065008385895 0.0010274032238403983 0.0010307302988457141 0.0007012029257087589 0.0010498370942439966 0.0016201807265746322 0.0009574521693850469 0.0012506253126563281 0.0016890679767063174 0.0017582721125294152 0.001674529441125799 0.0020595195570637615
26: co-operation countries efforts international 0.02078857257956224 0.030544858332785117 0.036922581835907 0.032852518328096735 0.025879926467291394 0.029327996669316073 0.034080781284650884 0.052005815030948976 0.06999976148641665 0.06602533392100876 0.05740802719604694 0.04769823960118399 0.0681994060666593 0.09124264187605967 0.08916209739050432 0.07685578957976419 0.09724132518824166 0.1481547573525038 0.20925459113502307 0.19985989780781277 0.13057358487099277 0.07454981885674514 0.04549530541196329 0.0195621115357845 0.0189087090806922 0.010846536170666382 0.014764992404654894 0.014574749683507884 0.015207596866985513 0.015328003030426019 0.014510062113069263 0.010774469067405356 0.00955808565729648 0.0062894196017291475 0.006443037166456736 0.00838459454637956 0.011714924741582542 0.013659949318209243 0.007905259167777356 0.007161294296160673 0.00901045760975726 0.007468329975436757 0.006597504422240283 0.008265305574787598 0.005051125200928737
27: african peace africa country 0.008434604538740433 0.02193703791792967 0.019024452573743415 0.025687898695610778 0.03119311303412097 0.03269652927595473 0.027540786054704988 0.031690271354383306 0.03208802741316118 0.03796255485502942 0.037341917336351775 0.03053824583268422 0.028488214730919226 0.0369077781799478 0.03975826736015789 0.023404212435755314 0.02558351816743698 0.03411765705593936 0.03284965992366572 0.041157079281358165 0.03176834281882031 0.030473114057787375 0.028088405949994726 0.02734055413771629 0.02809235325242101 0.026765449207385595 0.029561352016239252 0.02970652549200138 0.02406136641944502 0.025497066529575965 0.021527767144891366 0.028225992613111726 0.026685828264182268 0.028541563319396217 0.02512204041119347 0.023739833100978533 0.02244453847548812 0.021992277060456138 0.023318374683606216 0.024216261009300164 0.02339860406393673 0.025071067811111417 0.022214785421746267 0.02778001406175364 0.0240221468119307
28: pacific islands small states 0.003910970860749295 0.005981448401151758 0.006384076249248723 0.005103303817956774 0.0022104649598708695 0.004253245524393475 0.003443644321334276 0.0044889403218034835 0.006257006336510864 0.004181438399478757 0.0037943599790915346 0.0036064807602430287 0.0034957437318684503 0.006084620806583735 0.007007872263071592 0.008473243978635494 0.007752706425618213 0.00834884135926785 0.008126716580759245 0.010050271963078951 0.00815797814433558 0.011640461870683348 0.007973766571719942 0.011527236760162651 0.011185260230596013 0.01392904890712931 0.012923289254939215 0.011490390148463574 0.013280654328689263 0.014886065902746775 0.015882980406567552 0.01647045244690674 0.019227671989791494 0.02137812108756762 0.023885673819792314 0.018269033822489743 0.018859940760442482 0.023772173283456016 0.02406426920678397 0.020123292963566426 0.021868076895590654 0.023266083404631138 0.020584001317376085 0.020636428529258646 0.025300276835149134
29: peace nations united nuclear 0.004951658385927219 0.009721118763631579 0.007543526717051494 0.005331809959059316 0.005389409496480294 0.0029569282010521933 0.006230360139084736 0.004847231888773119 0.003553852391893718 0.004997796217158845 0.0037605153410223335 0.00356363919613647 0.0029963517701729575 0.004282475758672585 0.005724270461577272 0.004559105109341933 0.004630145926008533 0.006381658891409828 0.0056686356396654 0.005538157244107467 0.006619170329947956 0.005822461763603591 0.006131975946829835 0.00649221138151816 0.007620907043801758 0.00698229109757885 0.00882314720630212 0.006596846587639545 0.007934197453848109 0.00736862516967229 0.004486227434888457 0.004784164358264081 0.006076786798320057 0.005362246946826353 0.006326946406700759 0.006871535325638094 0.005887686634830442 0.007903945939423193 0.006804759051613455 0.007928375858767406 0.007307225041091975 0.005873099108547457 0.006570944420540443 0.006494168665904541 0.006658555099124844
30: bolivia social country america 0.001292466765140325 0.0014978923238078853 0.0017746690833715874 0.0011330096163001046 0.0014213334528987132 0.0015281404943037736 0.0011423024297986116 0.0011119393457678353 0.0010812615778468583 0.0015368989900925588 0.0021698173517698868 0.0024536532170119957 0.001566794627914867 0.0014668622482997733 0.0034353042433056084 0.005147636803386073 0.007075325576496537 0.006173468954206712 0.007378423233045303 0.020714521180154936 0.010206659592744177 0.007990826834186997 0.006523191616555895 0.005747336972227989 0.005836679614278742 0.00698229109757885 0.010714141681192672 0.008406030613419265 0.008983156581409857 0.007120599230668633 0.0063184864213787365 0.006515466297322253 0.005810424074234672 0.006773675383270734 0.009298869856453775 0.005166865985239413 0.010022365955388987 0.014571014842524436 0.016379110062239396 0.020940766745614476 0.018175754543938636 0.016377335578064197 0.018182977163710538 0.01430863939115827 0.013478969458831935
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment