<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Semantic Humanities &#187; visualisation</title>
	<atom:link href="http://semantichumanities.wordpress.com/category/visualisation/feed/" rel="self" type="application/rss+xml" />
	<link>http://semantichumanities.wordpress.com</link>
	<description>web technology and humanities scholarship</description>
	<lastBuildDate>Fri, 22 Dec 2006 00:46:13 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language></language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='semantichumanities.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bd12708ab1f97a85cad305a9a4ffec26?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Semantic Humanities &#187; visualisation</title>
		<link>http://semantichumanities.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://semantichumanities.wordpress.com/osd.xml" title="Semantic Humanities" />
		<item>
		<title>Tutorial: Networks (of Folksonomy) with Ruby, del.icio.us and Graphiz</title>
		<link>http://semantichumanities.wordpress.com/2006/09/04/tutorial-networks-of-folksonomy-with-ruby-delicious-and-graphiz/</link>
		<comments>http://semantichumanities.wordpress.com/2006/09/04/tutorial-networks-of-folksonomy-with-ruby-delicious-and-graphiz/#comments</comments>
		<pubDate>Mon, 04 Sep 2006 11:09:05 +0000</pubDate>
		<dc:creator>semantichumanities</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[tutorials]]></category>
		<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">https://semantichumanities.wordpress.com/2006/09/04/tutorial-networks-of-folksonomy-with-ruby-delicious-and-graphiz/</guid>
		<description><![CDATA[I was idly thinking about my del.icio.us bookmarks, how the tags are connected to each other when they are used to describe the same bookmarks, and wondering what they would look like as a graph.
Instead of simply searching the web and finding this del.icio.us tag grapher, I decided that I wanted to try playing with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=24&subd=semantichumanities&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I was idly thinking about my del.icio.us bookmarks, how the tags are connected to each other when they are used to describe the same bookmarks, and wondering what they would look like as a graph.</p>
<p>Instead of simply searching the web and finding this <a href="http://www.hubmed.org/touchgraphs/deltags.php?start=history">del.icio.us tag grapher</a>, I decided that I wanted to try playing with <a href="http://www.graphviz.org/">Graphiz</a> (open source graphing software), so I wrote a ruby script to write the <strong>.dot</strong> file from my bookmarks.</p>
<p>I really liked Graphiz. It&#8217;s a great tool, and .dot is a nice format, as it lets you abstract all the positioning and presentation, whereas if I had been generating an SVG file (for example), I would have had to do lots of calculations for the positioning of all the nodes and everything.</p>
<p>Anyway, this is how I did it:</p>
<p><code>
<pre>
#open the bookmarks file (after running it through HTML Tidy
# first, to transform it into XML)
require "rexml/document"
file = File.new( "delicious.xhtml" )
doc = REXML::Document.new file

#create a 2D array: an array of an array
# of the tags used for each bookmark.
tag_sets = Array.new()
doc.elements.each('//a') {|e| tag_sets.push(e.attributes['tags'].split(',')) } 

# I added this following line because I had too many bookmarks,
# making the graph too big and complicated: -&gt;
#      tag_sets = tag_sets.slice(0..10)

# now flatten the 2D array, and get a 1D array
# of all the tags used - <var>.uniq</var> gets rid of duplicates
tag_list = tag_sets.flatten.uniq         

#get the relationships
relationships = Array.new()

# now iterate through the tag list,
# and for each tag, look for that in each of the bookmarks.
# If it's found, record a relationship with the other tags of
# that bookmark

tag_list.each do |tag|

 tag_sets.each do |tag_set|

   if tag_set.include? tag
     tag_set.each do |related_tag|
     relationships.push([tag, related_tag]) if tag!=related_tag
     end
   end

 end

end

# <var>relationships</var> is now a 2D array of arrays each
# containing two tags

# put it into the <strong>.dot</strong> syntax

graph = "digraph x { \r\n"+relationships.uniq.collect{|r|'"'+r.join('" -&gt; "')+'";'}.join("\r")+"}"

# now  write it all into the <strong>.dot</strong> file

file = File.new("delicious_graph.dot", "w")
file.write(graph)
file.close()
</pre>
<p></code></p>
<h4>Links to the Results</h4>
<p>I don&#8217;t expect the results will be of much interest to anyone, but here they are for completeness sake.</p>
<p><a href="http://keithalexander.co.uk/files/delicious_graph.dot">the .dot file</a><br />
<a href="http://keithalexander.co.uk/files/delicious_graph.svg">an SVG export of the graph</a> (you may need a plugin, or a recent version of firefox, safari or opera)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/semantichumanities.wordpress.com/24/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/semantichumanities.wordpress.com/24/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/semantichumanities.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/semantichumanities.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/semantichumanities.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/semantichumanities.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/semantichumanities.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/semantichumanities.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/semantichumanities.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/semantichumanities.wordpress.com/24/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/semantichumanities.wordpress.com/24/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/semantichumanities.wordpress.com/24/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=24&subd=semantichumanities&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://semantichumanities.wordpress.com/2006/09/04/tutorial-networks-of-folksonomy-with-ruby-delicious-and-graphiz/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e8e1a35811b32fde34824e34012e10d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">semantichumanities</media:title>
		</media:content>
	</item>
		<item>
		<title>Text Analysis &#8211; say it with flowers</title>
		<link>http://semantichumanities.wordpress.com/2006/08/23/text-analysis-say-it-with-flowers/</link>
		<comments>http://semantichumanities.wordpress.com/2006/08/23/text-analysis-say-it-with-flowers/#comments</comments>
		<pubDate>Wed, 23 Aug 2006 08:41:42 +0000</pubDate>
		<dc:creator>semantichumanities</dc:creator>
				<category><![CDATA[text analysis]]></category>
		<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">https://semantichumanities.wordpress.com/2006/08/23/text-analysis-say-it-with-flowers/</guid>
		<description><![CDATA[http://www.neoformix.com/2006/TopicFlower.html
(seen at http://infosthetics.com/archives/2006/08/topic_flowers.html)
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=19&subd=semantichumanities&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://www.neoformix.com/2006/TopicFlower.html">http://www.neoformix.com/2006/TopicFlower.html</a></p>
<p>(seen at <a href="http://infosthetics.com/archives/2006/08/topic_flowers.html">http://infosthetics.com/archives/2006/08/topic_flowers.html</a>)</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/semantichumanities.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/semantichumanities.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/semantichumanities.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/semantichumanities.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/semantichumanities.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/semantichumanities.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/semantichumanities.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/semantichumanities.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/semantichumanities.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/semantichumanities.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/semantichumanities.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/semantichumanities.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=19&subd=semantichumanities&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://semantichumanities.wordpress.com/2006/08/23/text-analysis-say-it-with-flowers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e8e1a35811b32fde34824e34012e10d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">semantichumanities</media:title>
		</media:content>
	</item>
		<item>
		<title>Opera&#8217;s Semantic Web Widgets</title>
		<link>http://semantichumanities.wordpress.com/2006/08/23/operas-semantic-web-widgets/</link>
		<comments>http://semantichumanities.wordpress.com/2006/08/23/operas-semantic-web-widgets/#comments</comments>
		<pubDate>Wed, 23 Aug 2006 08:00:57 +0000</pubDate>
		<dc:creator>semantichumanities</dc:creator>
				<category><![CDATA[tools]]></category>
		<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">https://semantichumanities.wordpress.com/2006/08/23/operas-semantic-web-widgets/</guid>
		<description><![CDATA[Lately, there have been two semantic web widgets for Opera:

Widgnaut, a widget version of FOAFNAUT (FOAF visualiser)
       
Tabulator, a widget version of TBL&#8217;s tabulator(generic RDF browser)

Both of these seem to work much better than their webpage equivalents.
So there is a use for these widget things after all?
   [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=18&subd=semantichumanities&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Lately, there have been two semantic web widgets for Opera:</p>
<ul>
<li><a href="http://widgets.opera.com/widget/4037">Widgnaut</a>, a widget version of <a href="FOAFNAUT.org">FOAFNAUT</a> (FOAF visualiser)
       </li>
<li><a href="http://widgets.opera.com/widget/5053">Tabulator</a>, a widget version of TBL&#8217;s <a href="http://dig.csail.mit.edu/2005/ajar/ajaw/About.html" target="_blank">tabulator</a>(generic RDF browser)</a></li>
</ul>
<p>Both of these seem to work much better than their webpage equivalents.</p>
<p>So there is a use for these widget things after all?</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/semantichumanities.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/semantichumanities.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/semantichumanities.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/semantichumanities.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/semantichumanities.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/semantichumanities.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/semantichumanities.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/semantichumanities.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/semantichumanities.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/semantichumanities.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/semantichumanities.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/semantichumanities.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=18&subd=semantichumanities&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://semantichumanities.wordpress.com/2006/08/23/operas-semantic-web-widgets/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e8e1a35811b32fde34824e34012e10d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">semantichumanities</media:title>
		</media:content>
	</item>
		<item>
		<title>Social Network of AJAX Books</title>
		<link>http://semantichumanities.wordpress.com/2006/08/22/social-network-of-ajax-books/</link>
		<comments>http://semantichumanities.wordpress.com/2006/08/22/social-network-of-ajax-books/#comments</comments>
		<pubDate>Tue, 22 Aug 2006 14:02:05 +0000</pubDate>
		<dc:creator>semantichumanities</dc:creator>
				<category><![CDATA[study of the book]]></category>
		<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">https://semantichumanities.wordpress.com/2006/08/22/social-network-of-ajax-books/</guid>
		<description><![CDATA[Dietrich Kappe has done another of those social network studies of book consumption using Amazon&#8217;s Other Customer&#8217;s also Bought...
(The original (at least, the first one I heard about) being Valdis Krebb&#8217;s Study of polarised political book buying).
The graph isn&#8217;t  so pretty as Krebb&#8217;s, but it is more interesting in that it shows a more [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=17&subd=semantichumanities&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Dietrich Kappe has done another of those <a href="http://blogs.pathf.com/agileajax/2006/08/social_network_.html">social network studies of book consumption</a> using Amazon&#8217;s <q>Other Customer&#8217;s also Bought..</q>.</p>
<p>(The original (at least, the first one I heard about) being Valdis Krebb&#8217;s <a href="http://www.orgnet.com/divided.html">Study of polarised political book buying</a>).</p>
<p>The graph isn&#8217;t  so pretty as Krebb&#8217;s, but it is more interesting in that it shows a more complex picture than the rather-to-be-expected left/right political divide of American politics.</p>
<p>Choice of programming language is also political of course, and it&#8217;s interesting that Kappe&#8217;s study shows that related books on server-side languages break up into subnets, whilst client-side technologies like CSS and javascript form a common ground  (as you&#8217;d expect really).</p>
<p>If you&#8217;ve written or read similar studies, I&#8217;d appreciate it if you&#8217;d link to &#8216;em in the comments.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/semantichumanities.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/semantichumanities.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/semantichumanities.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/semantichumanities.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/semantichumanities.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/semantichumanities.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/semantichumanities.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/semantichumanities.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/semantichumanities.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/semantichumanities.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/semantichumanities.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/semantichumanities.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=17&subd=semantichumanities&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://semantichumanities.wordpress.com/2006/08/22/social-network-of-ajax-books/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e8e1a35811b32fde34824e34012e10d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">semantichumanities</media:title>
		</media:content>
	</item>
		<item>
		<title>www.openacademia.org</title>
		<link>http://semantichumanities.wordpress.com/2006/08/17/wwwopenacademiaorg/</link>
		<comments>http://semantichumanities.wordpress.com/2006/08/17/wwwopenacademiaorg/#comments</comments>
		<pubDate>Thu, 17 Aug 2006 16:42:30 +0000</pubDate>
		<dc:creator>semantichumanities</dc:creator>
				<category><![CDATA[api]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">https://semantichumanities.wordpress.com/2006/08/17/wwwopenacademiaorg/</guid>
		<description><![CDATA[

openacademia is an initiative to collect, share, publish and manage bibliographical information, the Semantic Web-way.

Information about scientific publications is often maintained by individual researchers. Reference management software such as EndNote and Bibtex help researchers to maintain a personal collection of bibliographic references. (These are typically references to one&#8217;s own publications and also those that have [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=15&subd=semantichumanities&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><blockquote cite="http://jeenbroekstra.blogspot.com/2006/08/openacademia-semantics-based.html">
<p>
openacademia is an initiative to collect, share, publish and manage bibliographical information, the Semantic Web-way.</p>
<p>
Information about scientific publications is often maintained by individual researchers. Reference management software such as EndNote and Bibtex help researchers to maintain a personal collection of bibliographic references. (These are typically references to one&#8217;s own publications and also those that have been read and cited by the researcher in his own work.)
</p>
</blockquote>
<p>Just had a quick look at <a href="http://www.openacademia.org/">openacademia.org</a>. Wonderful &#8211; and a great use of the <a href="http://simile.mit.edu/timeline/">simile timeline</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/semantichumanities.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/semantichumanities.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/semantichumanities.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/semantichumanities.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/semantichumanities.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/semantichumanities.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/semantichumanities.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/semantichumanities.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/semantichumanities.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/semantichumanities.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/semantichumanities.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/semantichumanities.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=15&subd=semantichumanities&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://semantichumanities.wordpress.com/2006/08/17/wwwopenacademiaorg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e8e1a35811b32fde34824e34012e10d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">semantichumanities</media:title>
		</media:content>
	</item>
		<item>
		<title>Timeline API</title>
		<link>http://semantichumanities.wordpress.com/2006/08/08/timeline-api/</link>
		<comments>http://semantichumanities.wordpress.com/2006/08/08/timeline-api/#comments</comments>
		<pubDate>Tue, 08 Aug 2006 13:40:26 +0000</pubDate>
		<dc:creator>semantichumanities</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[tools]]></category>
		<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">https://semantichumanities.wordpress.com/2006/08/08/timeline-api/</guid>
		<description><![CDATA[Simile at MIT have recently come up with a timeline widget api &#8211; google maps for timelines. It lets you plot events and time ranges (taken from either XML or JSON) onto timelines, and  it&#8217;s all pretty darn good.
It should facilitate all kinds  of interesting visualisations.  There are a few really interesting [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=13&subd=semantichumanities&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://simile.mit.edu/">Simile</a> at MIT have recently come up with a <a href="http://simile.mit.edu/timeline/">timeline widget api</a> &#8211; google maps for timelines. It lets you plot events and time ranges (taken from either XML or JSON) onto timelines, and  it&#8217;s all pretty darn good.</p>
<p>It should facilitate all kinds  of interesting visualisations.  There are a few really interesting examples up already &#8211; my favourite is the timeline of the shooting of JFK.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/semantichumanities.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/semantichumanities.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/semantichumanities.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/semantichumanities.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/semantichumanities.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/semantichumanities.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/semantichumanities.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/semantichumanities.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/semantichumanities.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/semantichumanities.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/semantichumanities.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/semantichumanities.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=13&subd=semantichumanities&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://semantichumanities.wordpress.com/2006/08/08/timeline-api/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e8e1a35811b32fde34824e34012e10d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">semantichumanities</media:title>
		</media:content>
	</item>
		<item>
		<title>Data Analytics Firefox Extension</title>
		<link>http://semantichumanities.wordpress.com/2006/02/25/data-analytics-firefox-extension/</link>
		<comments>http://semantichumanities.wordpress.com/2006/02/25/data-analytics-firefox-extension/#comments</comments>
		<pubDate>Sat, 25 Feb 2006 15:54:29 +0000</pubDate>
		<dc:creator>semantichumanities</dc:creator>
				<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">http://semantichumanities.wordpress.com/2006/02/25/data-analytics-firefox-extension/</guid>
		<description><![CDATA[This is still being developed, so all the features aren&#8217;t implemented yet.
You can get it and/ or read more about it here.
I think this could be a really useful extension. What it does is lets you select some tabular data on a page, then manipulate it as you would in a spreadsheet or database application, [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=10&subd=semantichumanities&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>This is still being developed, so all the features aren&#8217;t implemented yet.<br />
<a href="http://ffdataanalytics.sourceforge.net/">You can get it and/ or read more about it here</a>.</p>
<p>I think this could be a really useful extension. What it does is lets you select some tabular data on a page, then manipulate it as you would in a spreadsheet or database application, including editing, performing aggregate functions, and outputting to reports and graphs.</p>
<p>Sure, lots of spreadsheet applications let you import data from html tables, but where it gets really interesting is the roadmap, which seems to promise the capability to import from RDF. Here&#8217;s hoping&#8230;</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/semantichumanities.wordpress.com/10/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/semantichumanities.wordpress.com/10/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/semantichumanities.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/semantichumanities.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/semantichumanities.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/semantichumanities.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/semantichumanities.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/semantichumanities.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/semantichumanities.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/semantichumanities.wordpress.com/10/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/semantichumanities.wordpress.com/10/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/semantichumanities.wordpress.com/10/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=10&subd=semantichumanities&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://semantichumanities.wordpress.com/2006/02/25/data-analytics-firefox-extension/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e8e1a35811b32fde34824e34012e10d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">semantichumanities</media:title>
		</media:content>
	</item>
		<item>
		<title>Relationship Graphs</title>
		<link>http://semantichumanities.wordpress.com/2006/02/15/relationship-graphs/</link>
		<comments>http://semantichumanities.wordpress.com/2006/02/15/relationship-graphs/#comments</comments>
		<pubDate>Wed, 15 Feb 2006 12:53:00 +0000</pubDate>
		<dc:creator>semantichumanities</dc:creator>
				<category><![CDATA[Scripting]]></category>
		<category><![CDATA[visualisation]]></category>

		<guid isPermaLink="false">http://semantichumanities.wordpress.com/2006/02/15/relationship-graphs/</guid>
		<description><![CDATA[New Javascript Canvas Graph Library
This is a library that makes it easy to generate relationship graphs. This has really interesting applications in visualising humanities data and concepts &#8211; for instance graphing social networks.
It&#8217;s pretty simple to get it to do its stuff. You just make an html page with a bunch of elements having unique [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=3&subd=semantichumanities&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p><a href="http://aslakhellesoy.com/articles/2006/02/09/announcement-new-javascript-canvas-graph-library">New Javascript Canvas Graph Library</a><br />
This is a library that makes it easy to generate relationship graphs. This has really interesting applications in visualising humanities data and concepts &#8211; for instance graphing social networks.</p>
<p>It&#8217;s pretty simple to get it to do its stuff. You just make an html page with a bunch of elements having unique ids and containing text. These are the entities to be graphed, and the text is the label. Then you define their relationships in your javascript like this:<br />
<code>var g = new Graph();</code></p>
<p>g.addEdge($(&#8216;fred&#8217;), $(&#8216;wilma&#8217;));</p>
<p>var layouter = new Graph.Layout.Spring(g);<br />
layouter.layout();</p>
<p>var renderer = new Graph.Renderer.Basic($(&#8216;people&#8217;), g);<br />
renderer.draw();<br />
This makes two entities (fred and wilma), creates a line between them, and draws this in the canvas element that you have in your html (with the id &#8216;people&#8217;).</p>
<p>I gave it a try with some of the data from thesis project. While it&#8217;s easy to use, and is a nice proof of concept, I find it to be far too slow to be practically useful with any largish amount of data. To graph between 30 people, the page takes about 20-30 seconds to load, with at least one &#8220;Unresponsive Script&#8221; warning. (In firefox at  least;  admittedly it is a bit better in safari and opera).</p>
<p><a href="http://132.229.155.188/%7Ebooktrade/Alexander/KJWAlexanderDissertation/agents/relationships.php">My test &#8211; graph shows book owners and book authors. Lines between mean that the owner owned a book by the author</a></p>
<p>If I have the time, I&#8217;d like to write something that does something similar in a server-side language.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/semantichumanities.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/semantichumanities.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/semantichumanities.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/semantichumanities.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/semantichumanities.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/semantichumanities.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/semantichumanities.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/semantichumanities.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/semantichumanities.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/semantichumanities.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/semantichumanities.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/semantichumanities.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=semantichumanities.wordpress.com&blog=110377&post=3&subd=semantichumanities&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://semantichumanities.wordpress.com/2006/02/15/relationship-graphs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/5e8e1a35811b32fde34824e34012e10d?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">semantichumanities</media:title>
		</media:content>
	</item>
	</channel>
</rss>