View source: R/plot-distributions.R
| plot_edge_weights | R Documentation |
Histogram of edge weights in a network.
plot_edge_weights(
x,
normalize = FALSE,
bins = NULL,
log = "",
directed = NULL,
col = "steelblue",
border = "white",
main = "Edge Weight Distribution",
xlab = "Weight",
...
)
x |
Network input: matrix, igraph, network, cograph_network, or tna. |
normalize |
Logical. Show proportions. Default FALSE. |
bins |
Integer or NULL. Number of bins. Default NULL (auto). |
log |
Character. Log scaling. Default |
directed |
Logical or NULL. Default NULL (auto-detect). |
col |
Fill color. Default |
border |
Border color. Default |
main |
Title. Default |
xlab |
X-axis label. Default |
... |
Additional arguments passed to |
Invisibly returns the weight vector.
adj <- matrix(c(0, 2, 3, 2, 0, 1, 3, 1, 0), 3, 3)
rownames(adj) <- colnames(adj) <- c("A", "B", "C")
cograph::plot_edge_weights(adj)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.