View source: R/triad_census_attr.R
triad_census_attr | R Documentation |
triad census with node attributes
triad_census_attr(g, vattr)
g |
igraph object. should be a directed graph |
vattr |
name of vertex attribute to be used |
The node attribute should be integers from 1 to max(attr). The output is a named vector where the names are of the form Txxx-abc, where xxx corresponds to the standard triad census notation and "abc" are the attributes of the involved nodes.
The implemented algorithm is comparable to the algorithm in Lienert et al.
triad census with node attributes
David Schoch
Lienert, J., Koehly, L., Reed-Tsochas, F., & Marcum, C. S. (2019). An efficient counting method for the colored triad census. Social Networks, 58, 136-142.
library(igraph)
set.seed(112)
g <- sample_gnp(20, p = 0.3, directed = TRUE)
# add a vertex attribute
V(g)$type <- rep(1:2, each = 10)
triad_census_attr(g, "type")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.