've been just wondering, how do you produce all the nice
visualizations as seen on
http://wiki.github.com/tinkerpop/gremlin ?
say I have a graphml file I use to query with gremlin, I've tried to
visualize() from webling, but it screws me the utf8 encoding ;(
thanks for any tips
jan
I did all the visualizations on the site using iGraph [ http://igraph.sourceforge.net/ ] through R:Statistics. Simply export your graph to a graphml file:
g:save('my-graph.xml')
then load it in R.
library(igraph)
read.graph(file='my-graph.xml',format='graphml')
see http://igraph.sourceforge.net/doc/R/read.graph.html
Then visualize it using plot.graph:
http://igraph.sourceforge.net/doc/R/plot.common.html
Hope that helps...
See ya,
Marko.
http://markorodriguez.com
http://blueprints.tinkerpop.com
Cheers,
/peter neubauer
COO and Sales, Neo Technology
GTalk: neubauer.peter
Skype peter.neubauer
Phone +46 704 106975
LinkedIn http://www.linkedin.com/in/neubauer
Twitter http://twitter.com/peterneubauer
http://www.neo4j.org - Your high performance graph database.
http://www.tinkerpop.com - Processing for Internet-scale graphs.
http://www.thoughtmade.com - Scandinavias coolest Bring-a-Thing party.