motif_net {manynet} | R Documentation |
Motifs at the network level
Description
These functions include ways to take a census of the positions of nodes in a network:
-
net_by_dyad()
returns a census of dyad motifs in a network. -
net_by_triad()
returns a census of triad motifs in a network. -
net_by_mixed()
returns a census of triad motifs that span a one-mode and a two-mode network.
Usage
net_by_dyad(.data)
net_by_triad(.data)
net_by_mixed(.data, object2)
Arguments
.data |
An object of a manynet-consistent class:
|
object2 |
A second, two-mode migraph-consistent object. |
Source
Alejandro Espinosa 'netmem'
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. doi:10.1017/nws.2017.8
See Also
Other motifs:
motif_brokerage
,
motif_diffusion
,
motif_node
Examples
net_by_dyad(manynet::ison_algebra)
net_by_triad(manynet::ison_adolescents)
marvel_friends <- to_unsigned(ison_marvel_relationships, "positive")
(mixed_cen <- net_by_mixed(marvel_friends, ison_marvel_teams))