Skip to content

Instantly share code, notes, and snippets.

@ttm
Created July 16, 2013 22:24
Show Gist options
  • Save ttm/6015740 to your computer and use it in GitHub Desktop.
Save ttm/6015740 to your computer and use it in GitHub Desktop.
<script src="d3/d3.js"></script>
<script src="jsnetworkx.js"></script>
pimpao
<script>
var G = new jsnx.Graph(); // or just jsnx.Graph();
G.add_node(1);
G.add_nodes_from([2,3]);
G.add_edge(1,3);
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment