Igraph parameters

Hi all,

We are trying to create a network. Our network is very big so we want to take out the outliers. Also we want to only give the biggest 5 or so nodes a label because it is unreadable otherwise. Does anybody have tips for us.
plot(Gorg,

  •  vertex.label = NA,
    
  •  vertex.rescale = TRUE,
    
  •  vertex.color = "skyblue",
    
  •  vertex.size = degree,
    
  •  layout = layout.fruchterman.reingold(Gorg),
    
  •  edge.width = E(Gorg)$weight/max(E(Gorg)$weight), 
    
  •  edge.color = rgb(.5, .5, .5, .5))

this is our network

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.