I have a network that, when I plot it, has a number of overlapping nodes. I want to change the opacity of the colors so that you can see nodes underneath others when they overlap. As an example, see this video: https://vimeo.com/52390053
I'm using iGraph
for my plots. Here's a simplified blurb of code:
net1 <- graph.data.frame(myedgelist, vertices=nodeslist, directed = TRUE)
g <- graph.adjacency(get.adjacency(net1))
V(g)$color <- nodeslist$colors #This is a set of specific colors corresponding to each node. They are in the format "skyblue3". (These plot correctly for me).
E(g)$color <-"gray"
plot.igraph(g)
I can't, however, find an option in iGraph
to change the opacity of the node colors.
Any idea how I might do this? I thought maybe something like V(g)$alpha <- 0.8
, but this doesn't do anything.