minmax_overlap | R Documentation |
Two-mode networks can be represented (or 'projected') as one-mode networks.
minmax_overlap(A, row = TRUE, min = TRUE)
A |
A matrix object |
row |
Whether to consider the actors in the rows of the matrix (default) or the column. |
min |
Whether to extract the minimum (default) or the maximum overlap. |
This function return the overlap between the modes (a.k.a. actors, nodes, vertices).
Alejandro Espinosa-Rada
Morris, S.A. (2005). Unified Mathematical Treatment of Complex Cascaded Bipartite Networks: The Case of Collections of Journal Papers. Unpub- lished PhD Thesis, Oklahoma State University. Retrieved from http://digital.library.okstate.edu/etd/umi-okstate-1334.pdf
A <- matrix(c(
2, 0, 2,
1, 1, 0,
0, 3, 3,
0, 2, 2,
0, 0, 1
), byrow = TRUE, ncol = 3)
minmax_overlap(A)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.