Visualizing graphs - ftsrg/cheat-sheets GitHub Wiki
yEd
yEd is very useful for drawing graphs manually.
Visualizing property graph models
Use the neo4j-graphviz
plug-in.
- http://mvnrepository.com/artifact/org.neo4j/neo4j-graphviz
- https://gist.github.com/peterneubauer/2652082
Visualizing RDF models
rapper -i turtle my.ttl -o dot > my.dot
dot -Tpdf my.dot > my.pdf
fdp -Tpdf my.dot > my.pdf
circo -Tpdf my.dot > my.pdf
twopi -Tpdf my.dot > my.pdf
sfdp -Tpdf my.dot > my.pdf
Do not forget to add the "rdf" prefix to the Turtle file
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .