| edge_reciprocity | R Documentation |
Convenience wrapper around edge_centrality that returns only
reciprocity information for directed networks.
edge_reciprocity(x, top = NULL, directed = NULL, digits = NULL, ...)
x |
Network input: matrix, igraph, network, cograph_network, or tna object. |
top |
Integer or NULL. Return only the top N edges. Default NULL. |
directed |
Logical or NULL. Default NULL (auto-detect). |
digits |
Integer or NULL. Round numeric columns. Default NULL. |
... |
Additional arguments passed to |
A data frame with columns: from, to, weight,
reciprocated, reverse_weight, weight_ratio.
edge_centrality
adj <- matrix(c(0, 0.8, 0, 0.3, 0, 0.5, 0.7, 0, 0), 3, 3, byrow = TRUE)
rownames(adj) <- colnames(adj) <- c("A", "B", "C")
cograph::edge_reciprocity(adj, directed = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.