qgraph_default_esize: qgraph Default Edge Size
Description
Calculates the default maximum edge width using qgraph's exact formula.
Formula: 15 * exp(-n/90) + 1 (halved for directed networks, minimum 1)
Usage
qgraph_default_esize(n_nodes, weighted = TRUE, directed = FALSE)
Value
Default esize value.
Arguments
- n_nodes
Number of nodes in the network.
- weighted
Logical: is the network weighted?
- directed
Logical: is the network directed?