communitytable: Create a table of structurally based communities

Description Usage Arguments Examples

View source: R/communitytable.R

Description

Function for generating a table of the communities generated by the Girvan-Newman edge betweenness community detection algorithm.

Usage

1
communitytable(edgelist)

Arguments

edgelist

a dataframe that contains a list of people and their associates. The first column represents source nodes and the second column represents target nodes.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
# minimal example
source <- c("a", "a", "b", "c", "d", "d", "d")
target <- c("b", "c", "c", "d", "e", "f", "g")
associations <- data.frame(source, target)
communitytable(edgelist = associations)

# FM 3-24 example association matrix
data("fm3_24_affiliations")
affiliations <- as.data.frame(fm3_24_affiliations)
associations <- transform2social(edgelist = affiliations)
communitytable(edgelist = associations)

dkoban/SNAToolKit documentation built on May 20, 2019, 1:28 p.m.