Data Visualization

TwitterFacebook
Get flash to fully experience Pearltrees
http://raphaeljs.com/

Raphaël—JavaScript Library

// Creates canvas 320 × 200 at 10, 50 var paper = Raphael( 10 , 50 , 320 , 200 ); // Creates circle at x = 50, y = 40, with radius 10 var circle = paper.circle( 50 , 40 , 10 ); // Sets the fill attribute of the circle to red (#f00) circle.attr( "fill" , "#f00" ); // Sets the stroke attribute of the circle to white circle.attr( "stroke" , "#fff" );

Protovis - Force-Directed Layouts

http://mbostock.github.com/protovis/ex/force.html View full screen. An intuitive approach to network layout is to model the graph as a physical system: nodes are charged particles that repel each other, and links are dampened springs that pull related nodes together. A physical simulation of these forces then determines node positions; approximation techniques that avoid computing all pairwise forces enable the layout of large numbers of nodes.

Flare | Data Visualization for the Web

Flare is open-source software released under a BSD license , meaning it can be freely deployed and modified (and even sold for $$). Flare's design was adapted from its predecessor prefuse , a visualization toolkit for Java. http://flare.prefuse.org/

50 Great Examples of Data Visualization | Webdesigner Depot

Wrapping your brain around data online can be challenging, especially when dealing with huge volumes of information. And trying to find related content can also be difficult, depending on what data you’re looking for. http://www.webdesignerdepot.com/2009/06/50-great-examples-of-data-visualization/

Graph Visualization on Google App Engine « HFV

http://blog.holkevisser.nl/2010/10/29/python-bindings-for-graphiz/ I need to manually change the include_path and library_path variables in setup.py to point to the correct locations of my graphviz installation.