Displaying 1 result from an estimated 1 matches for "2mode".
Did you mean:
mode
2012 Nov 19
0
R SNA: Creating a adjacency matrix containing all actors but only values of a subset
...nalysis i need a adjacency matrix with all firms a srow and
column header, which i construct as follows:
----
grants.edgelist <- read.csv("00-composed.csv", header = TRUE, sep = ";",
quote="\"", dec=",", fill = TRUE, comment.char="")
grants.2mode <- table(grants.edgelist) # cross tabulate -> 2-mode
sociomatrix
grants.adj <- grants.2mode%*%t(grants.2mode) # Adjacency matrix as
product of the 2-mode sociomatrix`
---
Now my problem: I want to run a netlm Regression on the adjacency matrix,
where i test how the network in one gi...