Displaying 2 results from an estimated 2 matches for "displaylabel".
Did you mean:
displaylabels
2006 Sep 08
8
Weighted association map
Could somebody program this kind of plot type to R, if none exists,
based on mds or correlation tables or some more suitable method? What
do you think about idea? Does it work? None similar or better exists?
http://weightedassociationmap.blogspot.com/
Atte Tenkanen
University of Turku, Finland
2011 May 23
0
SNA query
...setwd("c:\\temp")
x = read.csv(file = "testforr.csv")
Total.Sold=c(1,3,6,1,3,6,1,3,6,6,9)
src=c(1:10,1)
des=c(2:10,1,3)
y=data.frame(Total.Sold,src,des)
dat.edg <- network(y, directed = TRUE, matrix.type = "edgelist")
# Plot the network:
gplot(dat.edg, displaylabels = TRUE, label.cex = 0.9, arrowhead.cex =
0.9,
vertex.col = "red")
Is there any way you know of scaleing the size of the nodes in the
graph? I was hoping to scale the nodes according to their individual
betweeness score. Betweenness can be calculated for each node in the
example above,...