You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is the defaut layout and will be chosen if no layout is specified. The [default parameters to the spring layout algorithm](https://github.com/JuliaGraphs/GraphPlot.jl/blob/master/src/layout.jl#L78) can be changed by supplying an anonymous function, e.g., if nodes appear clustered too tightly together, try
102
+
This is the defaut layout and will be chosen if no layout is specified. The [default parameters to the spring layout algorithm](https://github.com/JuliaGraphs/GraphPlot.jl/blob/master/src/layout.jl#L78) can be changed by supplying an anonymous function, e.g., if nodes appear clustered too tightly together, try
103
103
```julia
104
104
layout=(args...)->spring_layout(args...; C=20)
105
105
gplot(g, layout=layout, nodelabel=nodelabel)
@@ -152,7 +152,7 @@ gplot(h)
152
152
# Arguments
153
153
+`G` graph to plot
154
154
+`layout` Optional. layout algorithm. Currently can choose from
0 commit comments