Dear all,
Here is the code that almost works:
using LightGraphs
using GraphPlot
using Colors
# nodes membership
membership = [1,1,1,1,1,1,1,1,2,1,1,1,1,1,2,2,1,1,2,1,2,1,2,1,1,1,1,2,1,1,2,1,1,1]
nodecolor = [colorant"lightgrey", colorant"orange"]
# membership color
nodefillc = nodecolor[membership]
gplot(g, nodefillc=nodefillc, layout=circular_layout)
I would like to emphasize connection between orange nodes, so the end result should be something like this:
How to do it?