count signed triangles
Counts the number of all possible signed triangles (+++),(++-), (+--) and (---)
count_signed_triangles(g)
g
: igraph object with a sign edge attribute.counts for all 4 signed triangle types
library(igraph) g <- make_full_graph(4) E(g)$sign <- c(-1, 1, 1, -1, -1, 1) count_signed_triangles(g)
signed_triangles
David Schoch
Useful links