View source: R/SourceCodePTNWNeu.R
edge.inv | R Documentation |
This function calculates the differences in absolute edge weight for each edge between two networks (adjacency matrices of the same dimension).
edge.inv(A, B)
A, B |
adjacency matrices of the same dimension |
This function calculates the differences in absolute edge weight for each edge between two networks (adjacency matrices of the same dimension). In particular, by considering absolute edge weights, it does not take account of directions (signs) of the edge weights (associations) when deriving the differences. Differences in absolute edge weight are one of the edge-specific network difference characteristics to compare two networks.
a symmetric N \times N matrix, with N denoting the number of nodes, containing the differences in absolute edge weight between two respective nodes
A<-create.adjacency.matrix(ExDataA,methodlist=list("Spearman")) B<-create.adjacency.matrix(ExDataB,methodlist=list("Spearman")) edge.inv(A,B)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.