Top Apa vs. Non-APA (radial tree!)
by Nivaldo
HTML
<h3>data originally generated by <a href="http://app.raw.densitydesign.org">RAW</a></h3>
<svg width="1000" height="1000" xmlns="http://www.w3.org/2000/svg"><g transform="translate(500,500)"><path class="link" d="M0,0C0,63.33333333333334 4.057780598778474,-63.203208207521214 8.115561197556948,-126.40641641504243" style="fill: none; stroke: rgb(204, 204, 204); stroke-width: 1px;"></path><path class="link" d="M0,0C0,63.33333333333334 12.106713151086895,-62.16541327610072 24.21342630217379,-124.33082655220144" style="fill: none; stroke: rgb(204, 204, 204); stroke-width: 1px;"></path><path class="link" d="M0,0C0,63.33333333333334 19.956853808162627,-60.10686397734228 39.913707616325254,-120.21372795468456" style="fill: none; stroke: rgb(204, 204, 204); stroke-width: 1px;"></path><path class="link" d="M0,0C0,63.33333333333334 27.479303477445324,-57.06136163381983 54.95860695489065,-114.12272326763966" style="fill: none; stroke: rgb(204, 204, 204); stroke-width: 1px;"></path><path class="link" d="M0,0C0,63.33333333333334 34.55054374333473,-53.07891330981654 69.10108748666946,-106.15782661963308" style="fill: none; stroke: rgb(204, 204, 204); stroke-width: 1px;"></path><path class="link" d="M0,0C0,63.33333333333334 41.05446503615992,-48.224910696711824 82.10893007231984,-96.44982139342365" style="fill: none; stroke: rgb(204, 204, 204); stroke-width: 1px;"></path><path class="link" d="M0,0C0,63.33333333333334 46.88427314810331,-42.57905638321672 93.76854629620662,-85.15811276643343" style="fill: none; stroke: rgb(204, 204, 204); stroke-width: 1px;"></path><path class="link" d="M0,0C0,63.33333333333334 51.944242791140546,-36.23405514107075 103.88848558228109,-72.4681102821415" style="fill: none; stroke: rgb(204, 204, 204); stroke-width: 1px;"></path><path class="link" d="M0,0C0,63.33333333333334 56.15128940362334,-29.294091715252915 112.30257880724668,-58.58818343050583" style="fill: none; stroke: rgb(204, 204, 204); stroke-width: 1px;"></path><path class="link"...
JavaScript
var text = d3.selectAll('text')
.style('stroke-width', 0.5)
.style('stroke', function() {return 'blue';});
var circles = d3.selectAll("circle")
.style('fill', function() {
return 'salmon';
});
var nodes = d3.selectAll(".node")
.style('fill', function() {
if (isNaN(d3.select(this.firstChild.nextSibling).html())) {
return d3.select(this.firstChild)
.style("fill","lightsalmon");
}
else {
return d3.select(this.firstChild)
.attr("r",d3.select(this.firstChild.nextSibling).html()/4);
}});
/*
generator:
http://app.raw.densitydesign.org/#%2F
(using circular dendrogram)
data:
Author,Apa Publications,Non-Apa Publications
"Stice, Eric",40,43
"Petry, Nancy M.",35,92
"Miller, Ralph R.",33,67
"Lowman, Rodney L.",33,5
"Mayer, Richard E.",27,58
"Simonton, Dean Keith",26,44
"Marsh, Herbert W.",25,43
"Hill, Clara E.",25,32
"Judge, Timothy A.",25,27
"Deary, Ian J.",24,104
"Levant, Ronald F.",24,11
"Yu, Calvin Kai-Ching",24,8
"Wei, Meifen",23,5
"Goodrich, Thelma Jean",23,2
"Fillmore, Mark T.",22,42
"Zentall, Thomas R.",21,81
"Walters, Glenn D.",21,65
"Stapel, Diederik A.",21,28
"McNally, Gavan P.",21,24
"Pearce, John M.",21,14
"Honey, R. C.",21,9
"Rogers, Richard",20,28
"Edens, John F.",20,27
"Bonanno, George A.",20,25
"Lenzenweger, Mark F.",20,21
"Sternberg, Robert J.",19,80
"Kaufman, James C.",19,59
"Kesner, Raymond P.",19,58
"Miller, Joshua D.",19,44
"Caprara, Gian Vittorio",19,36
"Besner, Derek",19,20
"Whisman, Mark A.",19,19
"Kaslow, Nadine J.",18,32
"Holland, Peter C.",18,29
"Eisenberg, Nancy",18,27
"Logan, Gordon D.",18,24
"Norcross, John C.",18,14
"Shapiro, Johanna",18,14
"Schredl, Michael",17,109
"Joiner Jr., Thomas E.",17,87
"Silvia, Paul J.",17,59
"Beran, Michael J.",17,47
"Lievens, Filip",17,35
"Oberauer, Klaus",17,33
"El-Sheikh, Mona",17,29
"Goldney, Robert D.",17,27
"Taft, Casey T.",17,25
"Elliot, Andrew J.",17,21
"Skeem, Jennifer L.",17,12
*/