Learn R Programming

migraph (version 0.12.1)

network_census: Censuses of graphs' motifs

Description

Censuses of graphs' motifs

Usage

network_dyad_census(object)

network_triad_census(object)

network_mixed_census(object, object2)

Arguments

object

A migraph-consistent object.

object2

A second, two-mode migraph-consistent object.

Functions

  • network_dyad_census(): Returns a census of dyad motifs in a network

  • network_triad_census(): Returns a census of triad motifs in a network

  • network_mixed_census(): Returns a census of triad motifs that span a one-mode and a two-mode network

References

Davis, James A., and Samuel Leinhardt. 1967. “The Structure of Positive Interpersonal Relations in Small Groups.” 55.

Hollway, James, Alessandro Lomi, Francesca Pallotti, and Christoph Stadtfeld. 2017. “Multilevel Social Spaces: The Network Dynamics of Organizational Fields.” Network Science 5(2): 187–212. tools:::Rd_expr_doi("10.1017/nws.2017.8")

See Also

Other motifs: node_census

Examples

Run this code
network_dyad_census(ison_adolescents)
network_triad_census(ison_adolescents)
marvel_friends <- to_unsigned(ison_marvel_relationships, "positive")
(mixed_cen <- network_mixed_census(marvel_friends, ison_marvel_teams))

Run the code above in your browser using DataLab