Extracting adjacency matrices with valued edges

This may seem obvious to an expert statnet user, but it took me a bit of careful reading of Carter's paper and some trial and error to figure it out. We are using the frequency of behaviors based on ethological observations as edge weights and would like to be able to extract a matrix of the edge weights.

[r]
set.seed(123)
## generate a network with 21 nodes and 50 edges.
## some edges are either self-loops or redundant
## just a quick and dirty way to get an example network object

n1 <- round(1+20*runif(50)) n2 <- round(1+20*runif(50)) n3 <- rpois(50,3) eee <- cbind(n1,n2)[order(n1),] net <- network(eee,directed=FALSE) set.edge.attribute(net,"meaningful.measure",n3) as.matrix(net,attrname="meaningful.measure") [/r] This last command returns a 50x50 matrix of the edge weights.

Leave a Reply

Your email address will not be published. Required fields are marked *