| network_edge_strength | R Documentation | 
Computes the how many edges remain in a network if edges with a weight 
lower than a certain threshold are removed.
The number of remaining edges between 1 and max(adjm) are calculated.
It is assumend that the matrix is symmetric and therefore the number 
of edges divided by two.
Uses the function replace_values.
network_edge_strength(adjm)
| adjm | A symmetrix numeric matrix. | 
A numeirc matrix of dim(max(adjm), 2). The first column 
indicated the applied threshold, the second column the remaining edges.
m <- matrix(seq(1:16), nrow=4) # m <- matrix(rnorm(10000), nrow=100) # bics <- c(run_fabia(m), run_isa(m), run_plaid(m)) # fn <- feature_network(bics, m) # network_edge_strength(apply_threshold(fn))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.