Thanks
On Thursday, April 2, 2015 at 10:48:53 AM UTC+1, [email protected] wrote: > > Hi > How can I save the following example plot(g) to .gif / .png or .jpg file > > julia> using Graphs > > julia> g = simple_graph(3) > Directed Graph (3 vertices, 0 edges) > > julia> add_edge!(g, 1, 2) > edge [1]: 1 -- 2 > > julia> add_edge!(g, 3, 2) > edge [2]: 3 -- 2 > > julia> add_edge!(g, 3, 1) > edge [3]: 3 -- 1 > > julia> plot(g) > > > Regards > > >
