Graph motifs are small connected induced subgraphs with a well-defined structure. These functions search a graph for various motifs.
count_motifs(graph, size = 3, cut.prob = NULL)count_motifs() returns a numeric scalar.
count_motifs() calculates the total number of motifs of a given
size in graph.
Other graph motifs:
dyad_census(),
motifs(),
sample_motifs()
g <- sample_pa(100)
motifs(g, 3)
#> [1] NA NA 474 NA 90 0 0 0 0 0 0 0 0 0 0 0
count_motifs(g, 3)
#> [1] 564
sample_motifs(g, 3)
#> [1] 400