Re: Array of hash table

2015-01-12 Thread Jason Friedman
>Can any one tell me how to create >graph={ > "nodes": [ > { > "id": "n0", > "label": "A node", > "x": 0, [ ... elided ... ] > } > ] > } Taking a guess and guessing that graphviz might be useful for you: https://code.google.com/p/pydot/. -- https://mail.pyth

Re: Array of hash table

2015-01-09 Thread Peter Otten
[email protected] wrote: > Hello, > >Can any one tell me how to create >graph={ > "nodes": [ > { > "id": "n0", > "label": "A node", > "x": 0, > "y": 0, > "size": 3 > }, > { > "id": "n1", > "label": "Another node", > "x":

Re: Array of hash table

2015-01-08 Thread Dave Angel
On 01/09/2015 02:17 AM, [email protected] wrote: Hello, Can any one tell me how to create graph={ "nodes": [ { "id": "n0", "label": "A node", "x": 0, "y": 0, "size": 3 }, { "id": "n1", "label": "Another node",