search for: coolexp

Displaying 1 result from an estimated 1 matches for "coolexp".

Did you mean: cooler
2012 Jul 23
0
igraph node placement
...graphs and plot them: gg=graph.adjacency(wadj,mode="max") V(gg)$name = 1:50 V(gg)$label = V(gg)$name E(gg)$weight = count.multiple(gg) gg = simplify(gg) wt = 2*E(gg)$weight*E(gg)$weight par(mar=c(0, 0, 0, 0)) #c(bottom, left, top, right) l=layout.fruchterman.reingold(gg,coolexp=10) plot.igraph(gg, layout=l, vertex.color=gray(0.8), edge.width=wt, vertex.label.color='black', edge.color=gray(0.2), vertex.label.cex=1.5, vertex.size=12) ____________________________________________________________________ Thanks in advance for y...