Displaying 1 result from an estimated 1 matches for "netlm".
Did you mean:
netem
2012 Nov 19
0
R SNA: Creating a adjacency matrix containing all actors but only values of a subset
...;", 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 given year explains the network in the
next year. However, therefore i wanted to subset the grants.edgelist in a
set for (lets say) 2003 and 2005 only. However, i figured out that not all
firms are in projects every year, and t...