Visualize Friend of a Friend (foaf) graph - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T16:12:24Zhttp://stackoverflow.com/feeds/question/74108http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph3Visualize Friend of a Friend (foaf) graphPeter Hoffmann2008-09-16T16:14:17Z2008-09-24T23:47:11Z
<p>I wrote a script to export twitter friends as foaf rdf description. Now I'm looking for a tool to visualize the friend networks. I tried <a href="http://foafscape.berlios.de/" rel="nofollow">http://foafscape.berlios.de/</a> but for 300+ Nodes it is really slow and does a bad job on auto formatting.</p>
<p>Any hints for good graph visualization tools? It's ok if they do not support foaf directly, but they should be able to use images for graph nodes and be able to display large graphs. Linux support would be nice.</p>
<p>Oh, and I'm searching for an interactive tool where I can move nodes by hand.</p>
<p><strong>Update:</strong> Thanks for your input. I know graphviz and for static images it is really great. But for large datasets I need to be able to select nodes and highlight all neighbours. </p>
<ul>
<li><strong>Prefuse</strong> looks great: <a href="http://prefuse.org/gallery/graphview/" rel="nofollow">http://prefuse.org/gallery/graphview/</a></li>
<li>trough prefuse I found <strong>vizster</strong>, which is exactly what I search (just need to find some sourcecode) <a href="http://jheer.org/vizster/" rel="nofollow">http://jheer.org/vizster/</a></li>
</ul>
http://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph/74137#741372Answer by sirprize for Visualize Friend of a Friend (foaf) graphsirprize2008-09-16T16:18:25Z2008-09-16T16:18:25Z<p>Hi Peter, perhaps the <a href="http://prefuse.org/" rel="nofollow">prefuse</a> visualization toolkit might help you. It's based on Java and has many sample apps including a <a href="http://prefuse.org/gallery/graphview/" rel="nofollow">graph viewer</a>.</p>
http://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph/74142#741422Answer by Jan Krüger for Visualize Friend of a Friend (foaf) graphJan Krüger2008-09-16T16:18:51Z2008-09-16T16:18:51Z<p>I don't know of any program that auto-generates graph visualizations <em>and</em> allows you to interactively adjust nodes, but <a href="http://www.graphviz.org/" rel="nofollow">Graphviz</a> is a really popular tool for graph visualization. It can export to SVG so you can edit the result in your favorite vector graphics editor.</p>
http://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph/74150#741502Answer by Cristian Ciupitu for Visualize Friend of a Friend (foaf) graphCristian Ciupitu2008-09-16T16:19:06Z2008-09-16T16:19:06Z<p>You could try <a href="http://www.graphviz.org" rel="nofollow">Graphviz</a>. It <em>runs on Linux</em>, Windows and Mac OS X and it will generate an image (PNG, PS, etc) of the graph. But you will have to transform your foaf data into its own custom language, which is easy to learn.</p>
http://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph/74157#741570Answer by Paul Reiners for Visualize Friend of a Friend (foaf) graphPaul Reiners2008-09-16T16:19:50Z2008-09-16T16:19:50Z<p>If you're using Java, you could use <a href="http://www.jgraph.com/" rel="nofollow">JGraph</a>.</p>
http://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph/74270#742701Answer by adam for Visualize Friend of a Friend (foaf) graphadam2008-09-16T16:32:52Z2008-09-16T16:32:52Z<p>Try using Google Social Graph. In one of the talks at dConstruct08 last week there was a social graph showing the friend connections of Robert Scoble.</p>
<p><a href="http://code.google.com/apis/socialgraph/" rel="nofollow">http://code.google.com/apis/socialgraph/</a><br />
<a href="http://dconstruct.org/2008" rel="nofollow">http://dconstruct.org/2008</a></p>
http://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph/74338#743380Answer by Abyss Knight for Visualize Friend of a Friend (foaf) graphAbyss Knight2008-09-16T16:40:21Z2008-09-16T16:40:21Z<p>I know Adobe Flex has a few graph visualization components out there, and of course that would enable the app to run on Flash which has an excellent penetration rate into your potential userbase. I'd Google up the Flex SpringGraph component, and check that out. There are a ton of graphing components in the wild for Flex, both paid and free versions.</p>
<p>Just one SpringGraph off the top of my head:
<a href="http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1048510" rel="nofollow">http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=1048510</a></p>
http://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph/74395#743951Answer by wxs for Visualize Friend of a Friend (foaf) graphwxs2008-09-16T16:45:47Z2008-09-16T16:45:47Z<p>As recommended by other posters, definitely <a href="http://graphviz.org" rel="nofollow" title="Graphviz">Graphviz</a>. It takes an input file, let's call it foaf.dot, in the following format:</p>
<pre><code>graph G {
"George Formby" [shape=custom, shapefile="file:formby.png"];
"Michael Jackson" [shape=custom, shapefile="file:jackson.png"];
"George Formby" -- "Michael Jackson";
"Fred Flinstone" -- "Michael Jackson";
"Michael Jackson" -- "Steve McQueen";
}
</code></pre>
<p>Note that this file describes an undirected graph (hopefully your friendships are reciprocal). The syntax for directed graphs is similar.</p>
<p>In order to output your graph to a pdf file (assuming that you have already installed graphviz) run the following command</p>
<pre><code>dot -Tpdf foaf.dot > foaf.pdf
</code></pre>
<p>Graphviz supports a number of output formats other than pdf, see its documentation for details.</p>
<p>I find that the 'dot' program usually provides the best output results, however graphviz contains a total of 5 layout programs. From the documentation:</p>
<ul>
<li>dot - filter for drawing directed graphs</li>
<li>neato - filter for drawing undirected graphs</li>
<li>twopi - filter for radial layouts of graphs</li>
<li>circo - filter for circular layout of graphs</li>
<li>fdp - filter for drawing undirected graphs</li>
</ul>
http://stackoverflow.com/questions/74108/visualize-friend-of-a-friend-foaf-graph/130674#1306740Answer by rec for Visualize Friend of a Friend (foaf) graphrec2008-09-24T23:47:11Z2008-09-24T23:47:11Z<p>check this forum: <a href="http://goosebumps4all.net/34all/bb/forumdisplay.php?fid=28" rel="nofollow">http://goosebumps4all.net/34all/bb/forumdisplay.php?fid=28</a>
for some flare examples, there is a friend of a friend graph around there.</p>