Build a Social Network Analysis Model
Arguments
- x
A
data.frame
or amatrix
with three columns: the first two representing the states and the third giving the weights.- aggregate
A
function
to use for aggregating the weights. The default issum()
.- ...
Additional arguments passed to
aggregate
.
Examples
set.seed(123)
d <- data.frame(
from = sample(LETTERS[1:4], 100, replace = TRUE),
to = sample(LETTERS[1:4], 100, replace = TRUE),
weight = rexp(100)
)
model <- sna(d)