We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d1c37b0 + 88388f8 commit ce94183Copy full SHA for ce94183
README.md
@@ -121,8 +121,8 @@ gplot(g, layout=spectral_layout)
121
### shell layout
122
```julia
123
nlist = Vector{Vector{Int}}(undef, 2) # two shells
124
-nlist[1] = [1:5] # first shell
125
-nlist[2] = [6:nv(g)] # second shell
+nlist[1] = 1:5 # first shell
+nlist[2] = 6:nv(g) # second shell
126
locs_x, locs_y = shell_layout(g, nlist)
127
gplot(g, locs_x, locs_y, nodelabel=nodelabel)
128
```
0 commit comments