Learn R Programming

tna (version 1.1.0)

sna: Build a Social Network Analysis Model

Description

Build a Social Network Analysis Model

Usage

sna(x, aggregate = sum, ...)

Value

A tna object representing the model.

Arguments

x

A data.frame or a matrix 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 is sum().

...

Additional arguments passed to aggregate.

Examples

Run this code
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)

Run the code above in your browser using DataLab