Thresholding Methods: Difference between revisions

From Brain Mapping Unit
Jump to navigationJump to search
mNo edit summary
Line 7: Line 7:


===Fixed Cost===
===Fixed Cost===
As <math>\tau</math> is continuously variable, it is possible to use this and related filtering techniques to construct binary graphs of arbitrary connection density or topological cost, <math>0 < \kappa < 1</math>, where <math>\kappa</math> is the number of edges in the graph (or non-zero elements in the adjacency matrix) divided by the maximum possible number of edges, <math>N . (N - 1)</math>.
As <math>\tau</math> is continuously variable, it is possible to use this and related filtering techniques to construct binary graphs of arbitrary connection density or topological cost, <math>0 < \kappa < 1</math>, where <math>\kappa</math> is the number of edges in the graph (or non-zero elements in the adjacency matrix) divided by the maximum possible number of edges, <math>N \times (N - 1)</math>.
The advantage of this approach is that the resulting networks can now be compared across subjects or groups since they contain the same number of edges and nodes. Indeed, all network measures are sensitive to the number of nodes and edges and comparing networks of different size and connectivity is therefore tricky: [[http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0013701]]
The advantage of this approach is that the resulting networks can now be compared across subjects or groups since they contain the same number of edges and nodes. Indeed, all network measures are sensitive to the number of nodes and edges and comparing networks of different size and connectivity is therefore tricky: [[http://www.plosone.org/article/info%3Adoi%2F10.1371%2Fjournal.pone.0013701]]




===MST-based methods===
===MST-based methods===
The Minimum Spanning Tree (MST) is a simply connected acyclic graph that connects all <math>n</math> nodes with <math>n 1</math> edges such that the sum of the `distance' of included edges <math>d_{ij}</math> is minimum. Clearly, in the case of brain networks one would like to include edges so as to maximise the total correlation strength, the distance <math>d_{ij}</math> is therefore defined as: <math> d_{ij} =</math><math> (2(1-\rho_{ij}))^{1/2} </math>
The Minimum Spanning Tree (MST) is a simply connected acyclic graph that connects all <math>n</math> nodes with <math>n-1</math> edges such that the sum of the ''distance'' of included edges <math>d_{ij}</math> is minimum. Clearly, in the case of brain networks one would like to include edges so as to maximise the total correlation strength, the distance <math>d_{ij}</math> is therefore defined as: <math> d_{ij} =</math><math> \sqrt{2(1-\rho_{ij})} </math>


====MST + Global thresholding====
====MST + Global thresholding====

Revision as of 20:04, 1 April 2016

Global Thresholding

A simple filtering technique is to apply a continuously variable threshold to the association matrix , so that

,

and otherwise.

Fixed Cost

As is continuously variable, it is possible to use this and related filtering techniques to construct binary graphs of arbitrary connection density or topological cost, , where is the number of edges in the graph (or non-zero elements in the adjacency matrix) divided by the maximum possible number of edges, . The advantage of this approach is that the resulting networks can now be compared across subjects or groups since they contain the same number of edges and nodes. Indeed, all network measures are sensitive to the number of nodes and edges and comparing networks of different size and connectivity is therefore tricky: [[1]]


MST-based methods

The Minimum Spanning Tree (MST) is a simply connected acyclic graph that connects all nodes with edges such that the sum of the distance of included edges is minimum. Clearly, in the case of brain networks one would like to include edges so as to maximise the total correlation strength, the distance is therefore defined as:

MST + Global thresholding

The MST ensures that the network is fully connected and contains mostly (but not only) links with high correlation strength that would have survived global thresholding anyway. Using the MST as a backbone, we can now include further edges in the network by adding links in order of decreasing correlation strength up to the desired cost .

Aaron's Code

Back To Main Page

Main Page