Graph motifs are small connected induced subgraphs with a well-defined structure. These functions search a graph for various motifs.
See also
Other graph motifs:
dyad_census(),
motifs(),
sample_motifs()
Examples
g <- sample_pa(100)
motifs(g, 3)
#> [1] NA NA 366 NA 78 0 0 0 0 0 0 0 0 0 0 0
count_motifs(g, 3)
#> [1] 444
sample_motifs(g, 3)
#> [1] 2950
