Description Usage Arguments Examples
View source: R/communitytable.R
Function for generating a table of the communities generated by the Girvan-Newman edge betweenness community detection algorithm.
1 | communitytable(edgelist)
|
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. |
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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.