You might check out GraphLayout.jl: https://github.com/IainNZ/GraphLayout.jl

On Thursday, April 2, 2015 at 2:48:53 AM UTC-7, pip7...@gmail.com 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
>
>
>

Reply via email to