<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Well-formed data &#187; science</title>
	<atom:link href="http://well-formed-data.net/archives/tag/science/feed" rel="self" type="application/rss+xml" />
	<link>http://well-formed-data.net</link>
	<description>Moritz Stefaner / Visualization</description>
	<lastBuildDate>Tue, 01 May 2012 19:55:43 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>well-formed.eigenfactor</title>
		<link>http://well-formed-data.net/archives/192/well-formed-eigenfactor</link>
		<comments>http://well-formed-data.net/archives/192/well-formed-eigenfactor#comments</comments>
		<pubDate>Wed, 28 Jan 2009 17:11:52 +0000</pubDate>
		<dc:creator>Moritz Stefaner</dc:creator>
				<category><![CDATA[Announcements]]></category>
		<category><![CDATA[Personal]]></category>
		<category><![CDATA[eigenfactor]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://well-formed-data.net/?p=192</guid>
		<description><![CDATA[Finally, the results of a cooperation with the guys from eigenfactor are online! For the impatient: here’s the direct link: http://well-formed.eigenfactor.org The site features 4 different visualizations, trying different approaches to mapping information flow and citation structure in the sciences. A radial visualization based on hierarchical edge bundling does a great job of displaying the [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://well-formed.eigenfactor.org"><img class="alignnone size-full wp-image-200" title="eigenfactor" src="http://well-formed-data.net/wp-content/uploads/2009/01/eigenfactor.jpg" alt="eigenfactor" width="480" height="240" /></a></p>

<p>Finally, the results of a cooperation with the guys from <a href="http://eigenfactor.org">eigenfactor</a> are online!</p>

<p>For the impatient: here’s the direct link: <a href="http://well-formed.eigenfactor.org">http://well-formed.eigenfactor.org</a></p>

<p>The site features 4 different visualizations, trying different approaches to mapping information flow and citation structure in the sciences.</p>

<p><span id="more-192"></span></p>

<p><a href="http://well-formed.eigenfactor.org/radial.html"><img class="alignnone size-full wp-image-202" title="radial" src="http://well-formed-data.net/wp-content/uploads/2009/01/radial.gif" alt="radial" width="480" height="240" /></a></p>

<p>A <a href="http://well-formed.eigenfactor.org/radial.html">radial visualization</a> based on hierarchical edge bundling does a great job of displaying the overall citation and clustering structure. I love the organic feel the bundled splines bring in, and multiplying the line colors added that deep extra color twist. Aesthetically, my clear favorite. Its downside is that it does not display the direction of information flow very well. Also, I am not 100% happy with the very heavy display when you click a whole cluster, but I guess you cannot have all at the same time.</p>

<p><a href="http://well-formed.eigenfactor.org/change.html"><img class="alignnone size-full wp-image-201" title="change" src="http://well-formed-data.net/wp-content/uploads/2009/01/change.gif" alt="change" width="480" height="240" /></a></p>

<p>A <a href="http://well-formed.eigenfactor.org/change.html">stacked column visualization</a> shows how cluster structure and journal importance change over time. It does not display any inter-journal citation information, however. Reminiscent – on first sight – of <a href="http://www.bewitched.com/historyflow.html">history flow</a>, or other <a href="http://www.leebyron.com/else/streamgraph/">stacked charts</a>, we were, in fact, inspired by <a href="http://en.wikipedia.org/wiki/Sankey_diagram">Sankey diagrams</a>, and tried to map change starting from the clustering structure. The truth is, 95% of the data does not change much :) but data-wise, there is a distilled version of, for instance, the very interesting development neuroscience has taken over the years. It is documented already in a <a href="http://arxiv.org/abs/0812.1242">paper</a>; we might want to publish a special interactive version for this story alone…</p>

<p><a href="http://well-formed.eigenfactor.org/treemap.html"><img class="alignnone size-full wp-image-203" title="treemap" src="http://well-formed-data.net/wp-content/uploads/2009/01/treemap.gif" alt="treemap" width="480" height="240" /></a></p>

<p>The treemap is probably the most functional of the visualizations. It transports the cluster structure quite well, additionally nicely tells the story how eigenfactor scores sum up to 1, and allows, on click, to get some pretty precise idea about the relation of the journal to others. It is a good counterpart to the radial visualization, with their complementary advantages.</p>

<p><a href="http://well-formed.eigenfactor.org/map.html"><img class="alignnone size-full wp-image-204" title="map" src="http://well-formed-data.net/wp-content/uploads/2009/01/map.gif" alt="map" width="480" height="240" /></a></p>

<p>Finally, a <a href="http://well-formed.eigenfactor.org/map.html">map.</a> This is probably the most obvious approach for network visualization, but I couldn’t resist :) especially since it was a 1 day action. I used a spring embedding algorithm based on connection strength to calculate the map coordinates with <a href="http://cytoscape.org/">cytoscape</a>. I was quite pleased with its import, layout and export capabilities. I simply exported as gml, <a href="http://en.wikipedia.org/wiki/Grep">grep</a>’ed the output and voila I had some coordinates to import. Great tool! The distortion lens is custom coded, and just uses two different linear distance scales. No fisheye, since I find these harder to control.</p>

<p>Here is the heart of the distance scaling code, if anyone is interested:
<code>
var xx:Number = lens.x;
var yy:Number = lens.y;
var radius:Number = 50;
var scale:Number = 5;
var scaledRadius:Number = radius * scale;
var dist:Number, diffX:Number, diffY:Number, diffUniX:Number, diffUniY:Number;
for each (var n:Node in data.group("leaves")) {
  diffX = (n.props.x - xx);
  diffY = (n.props.y - yy);
  dist = Math.sqrt(Math.pow(diffX, 2) + Math.pow(diffY, 2));
  if(dist &lt; radius) {
    n.x = xx + scale * diffX;
    n.y = yy + scale * diffY;
  } else {
    diffUniX = diffX / dist;
    diffUniY = diffY / dist;
    n.x = xx + diffUniX * (scaledRadius + dist - radius);
    n.y = yy + diffUniY * (scaledRadius + dist - radius);
  }
}
</code></p>

<p>All visualizations implemented using <a href="http://flare.prefuse.org">flare</a>, my favorite visualization framework. Amazing work, <a href="http://jheer.org/">Mr Heer</a>!</p>

<p>For all visualizations, the data basis came from the eigenfactor team, calculating both importance values for individual journals, as well as grouping them hierarchically according to their citation flow “neighborhoods”. You can find lots more information on the <a href="http://eigenfactor.org/methods.htm">eigenfactor</a> site.</p>

<p>The cooperation started when the eigenfactor team used a <a href="http://eigenfactor.org/map/">customized version</a> of the <a href="http://der-mo.net/relationBrowser">good old relation browser</a>; later, they got in touch with me to produce some more visualizations. We started work in summer 08, and after lots of scribbles, experiments, prototypes, adjustments and a little visit in Seattle autumn, we can finally present the results. I quite enjoyed the cooperation, science and design can be an explosive mix :) So, thanks to <a href="http://octavia.zoology.washington.edu/research/research.html">Carl Bergstrom</a>, <a href="http://www.tp.umu.se/~rosvall/">Martin Rosvall</a>, <a href="http://www.benalthouse.com/">Ben Althouse</a>, and <a href="http://www.biology.washington.edu/index.html?navID=41&amp;parecID=804">Jevin West</a>.</p>

<p>Anyways — feedback welcome!
Btw if you want to blog about it — here are some <a href="http://well-formed.eigenfactor.org/screenshots.html">screenshots</a>.</p>
<img src="http://well-formed-data.net/?ak_action=api_record_view&id=192&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://well-formed-data.net/archives/192/well-formed-eigenfactor/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Eigenfactor</title>
		<link>http://well-formed-data.net/archives/148/eigenfactor</link>
		<comments>http://well-formed-data.net/archives/148/eigenfactor#comments</comments>
		<pubDate>Mon, 30 Jun 2008 13:10:16 +0000</pubDate>
		<dc:creator>Moritz Stefaner</dc:creator>
				<category><![CDATA[Personal]]></category>
		<category><![CDATA[diagram]]></category>
		<category><![CDATA[information flow]]></category>
		<category><![CDATA[science]]></category>
		<category><![CDATA[visualization]]></category>

		<guid isPermaLink="false">http://well-formed-data.net/?p=148</guid>
		<description><![CDATA[Some interesting work from the Bergstrom Lab at the department of Biology(!), University of Washington. (PDF version here, more info here) Based on citation patterns, they calculated an information flow model of how scientific disciplines are influencing each other. While I cannot follow all the technical details, I really appreciate the well-designed diagrams. Quite interesting [...]]]></description>
			<content:encoded><![CDATA[<p>Some interesting work from the <a href="http://octavia.zoology.washington.edu/">Bergstrom Lab</a> at the department of Biology(!), University of Washington.</p>

<p><a href="http://www.eigenfactor.org/map/maps.htm"><img src="http://well-formed-data.net/wp-content/uploads/2008/06/screenshot_-26_-1.png" alt="" title="information flow in science" width="480" height="304" class="alignnone size-full wp-image-149" /></a></p>

<p>(PDF version <a href="http://www.eigenfactor.org/map/maps.htm">here</a>, more info <a href="http://www.eigenfactor.org/map/maps.htm">here</a>)</p>

<p>Based on citation patterns, they calculated an information flow model of how scientific disciplines are influencing each other. While I cannot follow all the <a href="http://octavia.zoology.washington.edu/publications/RosvallAndBergstrom07.pdf">technical details</a>, I really appreciate the well-designed diagrams. Quite interesting to see an “a posteriori” order of scientific disciplines based on the actual flow of information!</p>

<p>An explanation of the diagrams from the <a href="http://www.eigenfactor.org/index.php">eigenfactor.org</a>:</p>

<blockquote>Orange circles represent fields, with larger, darker circles indicating larger field size as measured by eigenfactor. Blue arrows represent citation flow between fields. An arrow from field A to field B indicates citation traffic from A to B, with larger, darker arrows indicating higher citation volume.

The map was creating using our information flow method for mapping large networks. Using data from Thomson Scientific’s 2004 Journal Citation Reports (JCR), we partitioned 6128 journals connected by 6,434,916 citations into 88 modules. For visual simplcity, we show only the most important links, namely those that a random surfer traverses at least once in 5000 steps, and the modules that are connected by these links.</blockquote>

<p>There is also an <a href="http://www.eigenfactor.org/map/index.html">interactive version online</a>  based on my good old <a href="http://der-mo.net/relationBrowser/">Relation Browser</a>. But honestly, I think the diagrams work much better.</p>

<p>Overall a great example of interdisciplinary research, where presentation and information design play together nicely with interesting+relevant analysis – exemplary!</p>
<img src="http://well-formed-data.net/?ak_action=api_record_view&id=148&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://well-formed-data.net/archives/148/eigenfactor/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

