graph theory: a primer to understanding resting state fmri · graph theory: a primer to...

1
Graph eory: A Primer to Understanding Resting State fMRI Millie Yu MS2, Quan Nguyen, MS3, Jeremy Nguyen MD, Enrique Palacios MD, Mandy Weidenhaſt MD What is Graph eory? • Simple stated, graph theory is the study of graphs. • Graphs are mathematical structures that can be utilized to model pairwise relations between objects. • A graph in this context is made up of nodes or points which are connected by edges or arcs. GRAPH THEORY has extensive applications: • Applied Mathematics • Electrical Engineering • Computer Science • Computer Network • Medical Science • Linguistics • Sociology What are the fundamental constructs in Graph eory? Edge • A line that connects two nodes • Must have a starting node and ending node • A single node may form many edges Node • A point where multiple edges meet • Represented by a letter Loop • An edge drawn from a node to itself What are adjacent nodes and what are parallel edges? Two nodes are adjacent if there is an edge between the two nodes. Example: ‘A’ and ‘B’ are adjacent nodes that share the common edge ‘AB’ ‘A’ and ‘D’ are adjacent nodes that share the common edge ‘AD’ ‘B’ and ‘D’ are adjacent nodes that share the common edge ‘BD’ ‘B’ and ‘C’ are adjacent nodes that share the common edge ‘BC’ A B C E D Parallel edges are a pair of nodes connected by more than one edge. Example: ‘A’ and ‘B’ are adjacent nodes by two edges, ‘AB’ and ‘AB’, thus this is a parallel edge. B A What’s a Degree of Node? e degree of node is the number of nodes adjacent to a particular node(V), denoted as deg(V). Example: Node A has 2 adjacent nodes (B,D) gdeg(A)=2 Node B has 3 adjacent nodes (A,D,C) gdeg(B)=3 Node E has zero adjacent node gdeg(E)=0 A B C E D Special types of nodes ere are special types of nodes include pendant nodes and isolated nodes: • A pendant node is a node with one degree. • An isolated node is a node with zero degrees. Example: Node C has one adjacent node, deg(C)=1, C is a pendant node Node E has no adjacent node, deg(E)=0. E is an isollated node What are the basic properties of a graph? Distance between two nodes: • e number of edges in the shortest path between two nodes. • Example: distance between Node A and Node B is denoted as d(A,B) = 1 Eccentricity of a node: • e maximum distance between a node to all other nodes. • Example: eccentricity of Node A is denoted as e(A) = 3, since maximum distance from node A to F is 3 Radius of a graph: • e minimum eccentricity from all the nodes. From all the eccentricities of the nodes in a graph, the radius of the graph is the minimum of all those eccentricities. • Example: radius of Graph G is denoted as r(G) = 1, since the minimum distance is 1 from all eccentricities Diameter of a graph: • e maximum eccentricity from all the nodes. From all the eccentricities of the nodes in a graph, the diameter of the graph is the maximum of all those eccentricities • Diameter of Graph G is denoted as d(G). • Example: e(A) = 3, e(B) = 3, e(C) = 2, e(D) = 4, e(E) = 3, e(F) = 4 • erefore, diameter of the graph is 4 Distances between nodes: d(A,B) =1 d(A,C) =1 d(A,D) = 2 d(A,E) = 2 d(A,F) = 3 Graphs can take simple or complex forms. Some basic types of graphs Directed Graph Contains edges with each edge having a direction Simple Graph No loops or parallel angles Connected Graph A path exists between every pair of nodes with at least one edge for every node N u l l G r a p h No edges T r i v i a l G r a p h Only one node with no edges N o n - D i r e c t e d G r a p h Contains edges but the edges are not directed A B C B A D C G F E A B D C G F E A B C B A D C G F E A D i s c o n n e c t e d G r a p h Does not contain at least two connected nodes Example: Two components of the graph are independent R e g u l a r G r a p h All nodes have the same degree Example: Each node of the graph has two adjacent nodes C o m p l e t e G r a p h A node must have edges with all other nodes Example: Each node has edges to all nodes in the graph Cycle Graph The degree of each node in the graph is two Example: Each node of the graph has two adjacent nodes Wheel Graph A cycle graph with a new node called a Hub, which is connected to all the nodes Example: Node F is the hub Cyclic Graph Contains at least one cycle Example: The graph has two cycles A A B B C D D E E F G A B C D E F A B C D A B C D A B C D E F G A c y c l i c G r a p h A graph with no cycles B i p a r t i t e G r a p h Contains two sets of nodes (V1 and V2) Every edge drawn joins a node in V1 (B,D) to a node in V2 (E,F) C o m p l e t e B i p a r t i t e G r a p h Contains two sets of nodes (V1 and V2) Every node in V1 (A,B,C) is connected to every node in V2 (D,E,F) Star Graph A complete bipartite graph with a single node belonging to one set and all remaining nodes belonging to the other set Example: All nodes are connected to node F C o m p l e m e n t o f a G r a p h Two graphs with edges present in one that are absent in the other combined to form a complete graph A A B B C D D E E F F G A B C D A B C D A B C D A B C D E F B D E F V1 V2 V1 V2 • Clustering (clustering coefficient) • Characteristic path length • Node degree and degree distribution • Centrality • Modularity • Clustering reflects the level of local connectedness within a graph. • A clustering coefficient is a measure of the degree to which nodes in a graph tend to cluster to- gether. • e local clustering coefficient of a node in a graph quantifies how close its neighbors are to being a complete graph. e value of clustering coefficient ranges from zero (0) to one (1) To explain the concept of clustering, consider the examples of three graphs below. e yellow node in each graph has three adjacent blue nodes, which can have a maximum of 3 connections among them. • Figure A, all three possible connections are constructed (red edges), giving a local clustering coefficient C = 3/3 = 1. • Figure B, only one red edge is constructed and 2 red edges are absent, giving a local cluster coefficient C = 1/3. • Figure C, none of the edges are constructed among the blue nodes, giving a local clustering coefficient C = 0/3 = 0. • Characteristic path length is defined as the average number of steps along the shortest paths for all possible pairs of network nodes. • is basically tells you how close a node of the graph is connected to every other node in the net- work. • is will give you insight on the level of global connectivity of the graph and tell you how efficient information can be integrated between different regions. e characteristic path length (CPL) of node A equals to the average of the steps of AB, AC , AD and AE. CPL = (1 + 1 + 2 + 3)/ 4 = 1.75 Distance of AB → d(A,B) = 1 Distance of AC → d(A,C) = 1 Distance of AD → d(A,D) = 2 Distance of AE → d(A,D) = 3 Centrality is used to indicate the most IMPORTATNT nodes in the graph. ere are different ways that one can characterize Centrality: • Degree Centrality: Number of edges incident on a node • Closeness Centrality:  e average length of the shortest path between a node and all other nodes in the graph. e more central a node is, the closer it is to all other nodes. • Betweenness Centrality: e number of times a node acts as a bridge along the shortest path between two other nodes. • Eigenvector Centrality: A measure of the influence of a node in a graph e simplest Centrality is the Degree Centrality which is simply the number of edges to a node. e remaining Centrality types are more abstract requiring higher mathematical representation Modularity depicts to which extent groups of nodes in the graph are connected to the members of their own group (formation of communities), thus indicating the formation of sub-networks within the full network. Fundamental concept of Functional MRI (fMRI) • fMRI is a magnetic resonance imaging technique that measures the change in blood oxygenation over time • Blood oxygenation levels can change rapidly following the activities of neurons in a brain region • fMRI allows for localization of brain activities on a second-by-second basis and within short dis- tance of its origin What is BOLD imaging? • BOLD stands for blood oxygen level dependent • BOLD imaging is the standard technique used in fMRI • BOLD fMRI utilizes T2* sequence • BOLD signal is strongly influenced by hemoglobin (Hb) and deoxy-hemoglobin (dHb) in blood • Hb is diamagnetic with small susceptibility effect → small signal loss • dHb is paramagnetic with large susceptibility effect → large signal loss Neuronal activity is associated with following physiologic processes: • Cerebral blood flow (CBF) • Cerebral blood volume (CBV) • Cerebral metabolic rate of oxygen (CMRO2) • Blood oxygenation An increase in neural activity leads to the following events: • Increased CMRO2 results in increased oxygen extraction → increased dHb → rapid dephasing → increased signal loss • Concomitant increase in CBF which overshoots the increased demand of oxygen → increased in- flux of Hb • Resultant increased Hb/dHb → signal gain BOLD imaging principle BOLD Images are generated by differentiating between re- gional discrepancies in cerebral blood flow to delineate re- gional activity. Cerebral blood flow discrepancies give rise to local magnetic field inhomogeneities arising from from different states of he- moglobin, which are used to create an image Activated area What is the difference between fMRI and resting-state fMRI? • fMRI uses task based or stimulus driven actions performed by the subject to measure brain function. • Resting state fMRI is a method of functional brain imaging that measures the level of co-activation between anatomically separate brain regions during when a subject is not performing an explicit task. • Resting state fMRI measures spontaneous, low frequency fluctuations through BOLD imaging. How do fMRI findings correlate to brain functional activity? • Functional connectivity is defined as the temporal dependence of neuronal activity patterns of ana- tomically separated brain regions. • fMRI studies have shown the feasibility of utilizing time-series signal measured during resting state to examine the functional connectivity between brain regions. • Resting state fMRI experiments have shown that a vast amount of spontaneous activity that is highly correlated between multiple brain regions. How do we utilize the fMRI data to analyze the brain connectivity? Using fMRI data, a technique called “MODEL-FREE METHOD” is used to explore the connectivity of the brain as a whole. • Model-free methods are designed to look for general patterns of unique connectivity across brain regions. Several model-free methods have been suggested and successfully applied to resting-state time-series, including: • Principal component analysis (PCA) • Independent component analysis (ICA) • Laplacian and normalized cut clustering e resting-state networks features: • Anatomically separated • Functionally linked brain regions • High level of ongoing functional connectivity during resting state e most consistent reported resting-state networks across these studies include: • Primary sensorimotor network • Primary visual and extra-striate visual network • A network consisting of bilateral temporal/insular and anterior cingulate cortex (ACC) regions • Leſt and right lateralized networks consisting of superior parietal and superior frontal regions (*reported as one single network) • Default mode network consisting of precuneus, medial frontal, inferior parietal cortical regions and medial temporal lobe Resting State fMRI Networks • e brain forms a very efficient network. • is so-called brain network consists of a large number of different brain regions that each have their own task and function, which continuously sharing information with each other. • e brain regions thus form a complex integrative network in which information is continuously processed and transported between structurally and functionally linked brain regions. Brain region • Graph theory provides a theoretical framework to examine the topology of complex networks in general. • Graphical analysis is a specific approach to analyzing brain networks in which the brain network is represented in the mathematical “graph.” • Graphical analysis can reveal important information about both the local and global organization of functional brain networks. Brain network is represented as a graph consisting of nodes and edges. Microscale organization → e organization of nodes and edges in the network Mesoscale organization → e arrangement of nodes into modules or communities Macroscale organization → Single scalar values representing a property of the network Some key properties of brain networks that can be described graph theory are: • Clustering (clustering coefficient) • Node degree and degree distribution • Node centrality • Characteristic path length • Modularity Clustering • Clustering provides Information about the level of local neighborhood clustering within a graph. • is describes how close the neighbors of node are connected themselves. • is indicates the level of local connectedness of a graph. • Clustering is characterized by clustering-coefficient. Node degree • K = the number of edges linked to a node • is is a measurement of the connectivity of a node with the rest of the nodes in a network. Degree distribution • is is the probability that a node chosen uniformly at random has degree k. • is is equivalent to calculating the fraction of nodes in the graph having degree k. • Networks can be classified into different categories based on degree distribution. Characteristic path length • is is the path length describing how close on average a node is connected to every other node in the network. • is provides information about the level of global connectivity of the network. Path length from node A to node B Modularity • Modularity is the degree to which a network is organized into a modular or community structure. • Modules consist of a set of nodes with denser links among them but sparser links with the rest of the network. • Detection and characterization of modular structure in the brain system can help to identify groups of anatomically and/or functionally associated components that perform specific biological functions. Node Centrality • Node centrality indicates the number of shortest travel routes within a network pass through a specific node of the network. • is quantifies how important a node is within a network. • A node with high level of centrality indicates that it has a key role in the overall communication efficiency of a network. Several different metrics exist for measuring nodal centrality: • Node degree = the number of edges linked directly to it • Nodal efficiency = the ability of a node to propagate information with the other nodes in a network • Closeness centrality = the average distance from a node to all the other nodes in a network • Betweenness centrality = the influence that one node has over the flow of information between all other nodes in the network. A node with high centrality is considered a hub in the network. ree major types of networks: • Regular organization (lattice) • High local clustering, high path length • Small world organization • High local clustering, low path length • Random organization • Low local clustering, low path length • Graph theoretical analysis of the brain revealed that the brain network showed a small-world net- work. • Small-world network features: • High local clustering → High level of local connectedness • Short path lengths linking different brain regions → short average travel distance (i.e. low path length) between the nodes of the network • Small world organization combines a high level local efficiency with a high level of global efficiency. • Graph eory is the study of graphs consisting of nodes and edges. • Graph eory can be utilized to perform mathematical analysis of the brain networks. • Important graph properties in the analysis of brain networks include clustering, node degree and degree distribution, characteristic path length, centrality, and modularity. • Resting state fMRI can be utilized to map the functional connectivity of brain networks. • Graph theoretic analysis of resting state fMR imaging is recognized as a significant analytical tool for describing the human brain networks. • Graphical theoretic analysis can reveal important information about both the local and global orga- nization of functional brain networks. • Brain network consists of a large number of different brain regions that each have their own task and function, which continuously share information with each other. • Brain network can be characterized as a small-world network that has high level local efficiency with a high level of global efficiency. 1. Van den Heuvel M, Hulshoff Pol H. Exploring the brain network: A review on resting-state fMRI functional connectivity. European Neuropsy- chopharmacology. 2010;20:519-34. 2. Graph eory Tutorial. https://www.tutorialspoint.com/graph_theory/. Accessed December 9, 2017. 3. Smith S, Vidaurre D, Beckmann C, et al. Functional connectomics from resting-state fMRI. Trends in Cognitive Sciences. 2013;17(12):666-82. 4. Bullmore E, Sporns O. Complex brain networks: graph theoretical analysis of structural and functional systems. Nature Reviews Neuroscience. 2009;10(3):186-98. 5. Ruohonen K. Graph eory. TUT Finlandia MAT-62756 Graph eory course. 6. Wang J. Graph-based network analysis of resting-state functional MRI. Frontiers in Systems Neuroscience. 2010;4(16). 7. Sadaghiani S. Graph analysis of fMRI data. UCLA/Semel Advanced Neuroimaging Summer Program 2015. 8. Lee M, Smyser C, Shimony J. Resting-state fMRI: a review of methods and clinical applications. American Journal of Neuroradiology. 2012;34(10):1866-72. Author Contact Information: Nguyen, Jeremy; MD, MS – Associate Professor of Radiology, Vice Chair of Academics, Tulane University School of Medicine, New Orleans, LA jnguye2@ tulane.edu Yu, Millie; MS – Second Year Medical Student, Tulane University School of Medicine, New Orleans, LA [email protected] Quan Nguyen, MS – ird Year Medical Student, LSU Health Science Center, New Orleans, LA Enrique Palacios; MD –Professor of Radiology, Tulane University School of Medicine, New Orleans, LA [email protected] Mandy Weidenhaſt; MD - Assistant Professor of Radiology, Radiology Residency Program Director Tulane University School of Medicine, New Orleans, LA [email protected] Special thanks to Donald Olivares, Digital Specialist, Tulane University School of Medicine; [email protected] Tulane University School of Medicine Department of Radiology A • A • • B V Using this graph for example to calculate the distance, eccentricity of a node and radius, and diameter of a graph: Some important key graph properties Characteristic path length Clustering coefficient Centrality Modularity Conclusion References Brain Functional Connectivity Graph eoretical Model of the Brain Network Brain Network Scale Key Properties of Brain Network Major Types of Networks SCHOOL OF MEDICINE

Upload: others

Post on 27-Apr-2020

11 views

Category:

Documents


0 download

TRANSCRIPT

Graph Theory: A Primer to Understanding Resting State fMRIMillie Yu MS2, Quan Nguyen, MS3, Jeremy Nguyen MD, Enrique Palacios MD, Mandy Weidenhaft MD

What is Graph Theory?• Simple stated, graph theory is the study of graphs.• Graphs are mathematical structures that can be utilized to model pairwise relations between objects. • A graph in this context is made up of nodes or points which are connected by edges or arcs.

GRAPH THEORY has extensive applications: • Applied Mathematics• Electrical Engineering • Computer Science • Computer Network• Medical Science • Linguistics• Sociology

What are the fundamental constructs in Graph Theory?Edge

• A line that connects two nodes• Must have a starting node and ending node• A single node may form many edges

Node• A point where multiple edges meet• Represented by a letter

Loop• An edge drawn from a node to itself

What are adjacent nodes and what are parallel edges?Two nodes are adjacent if there is an edge between the two nodes.

Example:‘A’ and ‘B’ are adjacent nodes that share the common edge ‘AB’‘A’ and ‘D’ are adjacent nodes that share the common edge ‘AD’‘B’ and ‘D’ are adjacent nodes that share the common edge ‘BD’‘B’ and ‘C’ are adjacent nodes that share the common edge ‘BC’

A

B

C E

D

Parallel edges are a pair of nodes connected by more than one edge. Example:‘A’ and ‘B’ are adjacent nodes by two edges, ‘AB’ and ‘AB’, thus this is a parallel edge. BA

What’s a Degree of Node?The degree of node is the number of nodes adjacent to a particular node(V), denoted as deg(V).

Example:Node A has 2 adjacent nodes (B,D) gdeg(A)=2Node B has 3 adjacent nodes (A,D,C) gdeg(B)=3Node E has zero adjacent node gdeg(E)=0

A

B

C E

D

Special types of nodesThere are special types of nodes include pendant nodes and isolated nodes:

• A pendant node is a node with one degree. • An isolated node is a node with zero degrees.

Example:Node C has one adjacent node, deg(C)=1, C is a pendant nodeNode E has no adjacent node, deg(E)=0. E is an isollated node

What are the basic properties of a graph?Distance between two nodes:

• The number of edges in the shortest path between two nodes.• Example: distance between Node A and Node B is denoted as d(A,B) = 1

Eccentricity of a node: • The maximum distance between a node to all other nodes.• Example: eccentricity of Node A is denoted as e(A) = 3, since maximum distance from node A to

F is 3Radius of a graph:

• The minimum eccentricity from all the nodes. From all the eccentricities of the nodes in a graph, the radius of the graph is the minimum of all those eccentricities.

• Example: radius of Graph G is denoted as r(G) = 1, since the minimum distance is 1 from all eccentricities

Diameter of a graph: • The maximum eccentricity from all the nodes. From all the eccentricities of the nodes in a graph,

the diameter of the graph is the maximum of all those eccentricities• Diameter of Graph G is denoted as d(G).• Example: e(A) = 3, e(B) = 3, e(C) = 2, e(D) = 4, e(E) = 3, e(F) = 4• Therefore, diameter of the graph is 4

Distances between nodes:d(A,B) =1d(A,C) =1d(A,D) = 2d(A,E) = 2d(A,F) = 3

Graphs can take simple or complex forms. Some basic types of graphs

Directed Graph

• Contains edges with each edge having a direction

Simple Graph

• No loops or parallel angles

Connected Graph

• A path exists between every pair of nodes with at least one edge for every node

Null Graph

• No edges

Trivial Graph

• Only one node with no edges

Non-Directed Graph

• Contains edges but the edges are not directed

A

B C

B

A

D

C

G F

E

A

B

D

C

G F

E

A

B C

B

A

D

C

G F

E

A

Disconnected Graph• Does not contain at least

two connected nodes

• Example: Two components of the graph are independent

Regular Graph• All nodes have the same

degree

• Example: Each node of the graph has two adjacent nodes

Complete Graph• A node must have edges

with all other nodes

• Example: Each node has edges to all nodes in the graph

Cycle Graph• The degree of each node

in the graph is two

• Example: Each node of the graph has two adjacent nodes

Wheel Graph• A cycle graph with a new

node called a Hub, which is connected to all the nodes

• Example: Node F is the hub

Cyclic Graph• Contains at least one

cycle

• Example: The graph has two cycles

A

A

B

B

C

D

D

E

E

FG

A B

C D

E F

A B

C D

A B

C D

A

B

C

DE

F

G

Acyclic Graph

• A graph with no cycles

Bipartite Graph

• Contains two sets of nodes (V1 and V2)

• Every edge drawn joins a node in V1 (B,D) to a node in V2 (E,F)

Complete Bipartite Graph

• Contains two sets of nodes (V1 and V2)

• Every node in V1 (A,B,C) is connected to every node in V2 (D,E,F)

Star Graph• A complete bipartite graph

with a single node belonging to one set and all remaining nodes belonging to the other set

• Example: All nodes are connected to node F

Complement of a Graph

Two graphs with edges present in one that are absent in the other combined to form a complete graph

A

A

B

B

C

D

D

E

E

F

F

G

A B

C D

A B

C D

A B

C D

A

B

C

DE

F

B

D E

F

V1 V2

V1 V2

• Clustering (clustering coefficient)• Characteristic path length• Node degree and degree distribution• Centrality• Modularity

• Clustering reflects the level of local connectedness within a graph. • A clustering coefficient is a measure of the degree to which nodes in a graph tend to cluster to-

gether.• The local clustering coefficient of a node in a graph quantifies how close its neighbors are to being

a complete graph. The value of clustering coefficient ranges from zero (0) to one (1)To explain the concept of clustering, consider the examples of three graphs below.The yellow node in each graph has three adjacent blue nodes, which can have a maximum of 3 connections among them.

• Figure A, all three possible connections are constructed (red edges), giving a local clustering coefficient C = 3/3 = 1.

• Figure B, only one red edge is constructed and 2 red edges are absent, giving a local cluster coefficient C = 1/3.

• Figure C, none of the edges are constructed among the blue nodes, giving a local clustering coefficient C = 0/3 = 0.

• Characteristic path length is defined as the average number of steps along the shortest paths for all possible pairs of network nodes.

• This basically tells you how close a node of the graph is connected to every other node in the net-work.

• This will give you insight on the level of global connectivity of the graph and tell you how efficient information can be integrated between different regions.

The characteristic path length (CPL) of node A equals to the average of the steps of AB, AC , AD and AE. CPL = (1 + 1 + 2 + 3)/ 4 = 1.75 Distance of AB → d(A,B) = 1

Distance of AC → d(A,C) = 1Distance of AD → d(A,D) = 2Distance of AE → d(A,D) = 3

Centrality is used to indicate the most IMPORTATNT nodes in the graph.

There are different ways that one can characterize Centrality:• Degree Centrality: Number of edges incident on a node• Closeness Centrality:  The average length of the shortest path between a

node and all other nodes in the graph. The more central a node is, the closer it is to all other nodes.

• Betweenness Centrality: The number of times a node acts as a bridge along the shortest path between two other nodes.

• Eigenvector Centrality: A measure of the influence of a node in a graph

The simplest Centrality is the Degree Centrality which is simply the number of edges to a node. The remaining Centrality types are more abstract requiring higher mathematical representation

Modularity depicts to which extent groups of nodes in the graph are connected to the members of their own group (formation of communities), thus indicating the formation of sub-networks within the full network.

Fundamental concept of Functional MRI (fMRI)• fMRI is a magnetic resonance imaging technique that measures the change in blood oxygenation

over time • Blood oxygenation levels can change rapidly following the activities of neurons in a brain region• fMRI allows for localization of brain activities on a second-by-second basis and within short dis-

tance of its origin

What is BOLD imaging?• BOLD stands for blood oxygen level dependent • BOLD imaging is the standard technique used in fMRI• BOLD fMRI utilizes T2* sequence• BOLD signal is strongly influenced by hemoglobin (Hb) and deoxy-hemoglobin (dHb) in blood• Hb is diamagnetic with small susceptibility effect → small signal loss• dHb is paramagnetic with large susceptibility effect → large signal loss

Neuronal activity is associated with following physiologic processes:• Cerebral blood flow (CBF)• Cerebral blood volume (CBV)• Cerebral metabolic rate of oxygen (CMRO2)• Blood oxygenation

An increase in neural activity leads to the following events:• Increased CMRO2 results in increased oxygen extraction → increased dHb → rapid dephasing →

increased signal loss• Concomitant increase in CBF which overshoots the increased demand of oxygen → increased in-

flux of Hb• Resultant increased Hb/dHb → signal gain

BOLD imaging principle

BOLD Images are generated by differentiating between re-gional discrepancies in cerebral blood flow to delineate re-gional activity. Cerebral blood flow discrepancies give rise to local magnetic field inhomogeneities arising from from different states of he-moglobin, which are used to create an image

Activated area

What is the difference between fMRI and resting-state fMRI?• fMRI uses task based or stimulus driven actions performed by the subject to measure brain

function.• Resting state fMRI is a method of functional brain imaging that measures the level of co-activation

between anatomically separate brain regions during when a subject is not performing an explicit task.

• Resting state fMRI measures spontaneous, low frequency fluctuations through BOLD imaging.

How do fMRI findings correlate to brain functional activity?• Functional connectivity is defined as the temporal dependence of neuronal activity patterns of ana-

tomically separated brain regions.• fMRI studies have shown the feasibility of utilizing time-series signal measured during resting state

to examine the functional connectivity between brain regions.• Resting state fMRI experiments have shown that a vast amount of spontaneous activity that is highly

correlated between multiple brain regions.

How do we utilize the fMRI data to analyze the brain connectivity?Using fMRI data, a technique called “MODEL-FREE METHOD” is used to explore the connectivity of the brain as a whole.

• Model-free methods are designed to look for general patterns of unique connectivity across brain regions.

Several model-free methods have been suggested and successfully applied to resting-state time-series, including:

• Principal component analysis (PCA)• Independent component analysis (ICA) • Laplacian and normalized cut clustering

The resting-state networks features:• Anatomically separated• Functionally linked brain regions • High level of ongoing functional connectivity during resting state

The most consistent reported resting-state networks across these studies include:• Primary sensorimotor network• Primary visual and extra-striate visual network• A network consisting of bilateral temporal/insular and anterior cingulate cortex (ACC) regions • Left and right lateralized networks consisting of superior parietal and superior frontal regions

(*reported as one single network)• Default mode network consisting of precuneus, medial frontal, inferior parietal cortical regions

and medial temporal lobe

Resting State fMRI Networks

• The brain forms a very efficient network.• This so-called brain network consists of a large

number of different brain regions that each have their own task and function, which continuously sharing information with each other.

• The brain regions thus form a complex integrative network in which information is continuously processed and transported between structurally and functionally linked brain regions.

Brain region

• Graph theory provides a theoretical framework to examine the topology of complex networks in general.

• Graphical analysis is a specific approach to analyzing brain networks in which the brain network is represented in the mathematical “graph.”

• Graphical analysis can reveal important information about both the local and global organization of functional brain networks.

Brain network is represented as a graph consisting of nodes and edges.

Microscale organization → The organization of nodes and edges in the network

Mesoscale organization → The arrangement of nodes into modules or communities

Macroscale organization → Single scalar values representing a property of the network

Some key properties of brain networks that can be described graph theory are:• Clustering (clustering coefficient)• Node degree and degree distribution• Node centrality• Characteristic path length• Modularity

Clustering• Clustering provides Information about the level of local

neighborhood clustering within a graph.• This describes how close the neighbors of node are

connected themselves.• This indicates the level of local connectedness of a graph.• Clustering is characterized by clustering-coefficient.

Node degree• K = the number of edges linked to a node• This is a measurement of the connectivity of a node with

the rest of the nodes in a network.

Degree distribution• This is the probability that a node chosen uniformly at

random has degree k.• This is equivalent to calculating the fraction of nodes in

the graph having degree k. • Networks can be classified into different categories based

on degree distribution.

Characteristic path length• This is the path length describing how close on average a

node is connected to every other node in the network.• This provides information about the level of global

connectivity of the network.

Path length from node A to node BModularity• Modularity is the degree to which a network is organized

into a modular or community structure. • Modules consist of a set of nodes with denser links

among them but sparser links with the rest of the network.

• Detection and characterization of modular structure in the brain system can help to identify groups of anatomically and/or functionally associated components that perform specific biological functions.

Node Centrality • Node centrality indicates the number of shortest travel

routes within a network pass through a specific node of the network.

• This quantifies how important a node is within a network.

• A node with high level of centrality indicates that it has a key role in the overall communication efficiency of a network.

Several different metrics exist for measuring nodal centrality:• Node degree = the number of edges linked directly to it• Nodal efficiency = the ability of a node to propagate information with the other nodes in a

network• Closeness centrality = the average distance from a node to all the other nodes in a network• Betweenness centrality = the influence that one node has over the flow of information between all

other nodes in the network.

A node with high centrality is considered a hub in the network.

Three major types of networks:• Regular organization (lattice) • High local clustering, high path length• Small world organization • High local clustering, low path length• Random organization • Low local clustering, low path length

• Graph theoretical analysis of the brain revealed that the brain network showed a small-world net-work.

• Small-world network features: • High local clustering → High level of local connectedness • Short path lengths linking different brain regions → short average travel distance (i.e. low

path length) between the nodes of the network• Small world organization combines a high level local efficiency with a high level of global efficiency.

• Graph Theory is the study of graphs consisting of nodes and edges.• Graph Theory can be utilized to perform mathematical analysis of the brain networks.• Important graph properties in the analysis of brain networks include clustering, node degree and

degree distribution, characteristic path length, centrality, and modularity.• Resting state fMRI can be utilized to map the functional connectivity of brain networks.• Graph theoretic analysis of resting state fMR imaging is recognized as a significant analytical tool for

describing the human brain networks.• Graphical theoretic analysis can reveal important information about both the local and global orga-

nization of functional brain networks.• Brain network consists of a large number of different brain regions that each have their own task and

function, which continuously share information with each other.• Brain network can be characterized as a small-world network that has high level local efficiency with

a high level of global efficiency.

1. Van den Heuvel M, Hulshoff Pol H. Exploring the brain network: A review on resting-state fMRI functional connectivity. European Neuropsy-chopharmacology. 2010;20:519-34.

2. Graph Theory Tutorial. https://www.tutorialspoint.com/graph_theory/. Accessed December 9, 2017.3. Smith S, Vidaurre D, Beckmann C, et al. Functional connectomics from resting-state fMRI. Trends in Cognitive Sciences. 2013;17(12):666-82.4. Bullmore E, Sporns O. Complex brain networks: graph theoretical analysis of structural and functional systems. Nature Reviews Neuroscience.

2009;10(3):186-98.5. Ruohonen K. Graph Theory. TUT Finlandia MAT-62756 Graph Theory course.6. Wang J. Graph-based network analysis of resting-state functional MRI. Frontiers in Systems Neuroscience. 2010;4(16).7. Sadaghiani S. Graph analysis of fMRI data. UCLA/Semel Advanced Neuroimaging Summer Program 2015. 8. Lee M, Smyser C, Shimony J. Resting-state fMRI: a review of methods and clinical applications. American Journal of Neuroradiology.

2012;34(10):1866-72.

Author Contact Information:Nguyen, Jeremy; MD, MS – Associate Professor of Radiology, Vice Chair of Academics, Tulane University School of Medicine, New Orleans, LA [email protected] Yu, Millie; MS – Second Year Medical Student, Tulane University School of Medicine, New Orleans, LA [email protected] Quan Nguyen, MS – Third Year Medical Student, LSU Health Science Center, New Orleans, LAEnrique Palacios; MD –Professor of Radiology, Tulane University School of Medicine, New Orleans, LA [email protected] Weidenhaft; MD - Assistant Professor of Radiology, Radiology Residency Program Director Tulane University School of Medicine, New Orleans, LA [email protected] thanks to Donald Olivares, Digital Specialist, Tulane University School of Medicine; [email protected]

Tulane University School of Medicine Department of Radiology

A •

A • • B

V •

Using this graph for example to calculate the distance, eccentricity of a node and radius, and diameter of a graph:

Some important key graph properties

Characteristic path length

Clustering coefficient

Centrality

Modularity

Conclusion

References

Brain Functional Connectivity

Graph Theoretical Model of the Brain Network

Brain Network Scale

Key Properties of Brain Network

Major Types of Networks

SCHOOL OF MEDICINE