week 2 - graph theory Flashcards

(31 cards)

1
Q

what is network topology?

A

properties of a network that are unrelated to where the nodes are in space, instead it just matters the connection between nodes and edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What are the different types of graph theoretical measures?

A

Local - properties of each node e.g degree

Meso-scale - properties of sub networks

Global network properties

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is edge density?

A

num actual edges/ num possible edges

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

how to calculate number of possible edges?

A

N*(N-1)/2
(removes the diagonal and the lower triangular part)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what are components in the network?

A

sets of nodes that aren’t connected to any other components

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what is average edge weight?

A

the average of existing edges within the upper triangular

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what is degree?

A

number of edges connecting a node

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what is the strength of a node?

A

sum of edge weights connected to a node?

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is eigenvector centrality?

A

To what extent is the node connected to other nodes with high eigenvector centrality

Its basically a measure of how important the nodes you are connected to are

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is path length?

A

the number of edges between two nodes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is characteristic path length?

A

the average path length between all node pairs

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

what is global efficiency?

A

average inverse shortest path length

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is betweenness centrality?

A

the fraction of shortest paths in an entire network that pass through a given node

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

describe the spectrum of communication processes

A

from diffusion to routing

In diffusion, the structure of the network is unknown and the walk through the network is random

In routing you take the shortest path, this requires full knowledge of the network topology

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is the clustering coefficient?

A

the fraction of a nodes neighbours that are connected to each other

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what is the global clustering coefficient?

A

the average nodal clustering coefficient

17
Q

what is transitivity?

A

the ratio of triangles to triplets in the network

or the overall probability that two nodes connected to a common node are also connected to each other across the entire network.
It’s basically the global version of the clustering coefficient.

18
Q

what is a module? what about in fmri

A

subnetworks of nodes that are very densely connected with each other and sparesly connected to other modules

in fMRI this is the resting state networks e.g DMN, DAN

19
Q

what are hub nodes?

A

Important nodes that are very highly connected

connector hubs = connections with nodes in different communities

Provincial hubs = have many connections with different communities

20
Q

what is rich club?

A

A set of nodes that have high degree that are highly connected to each other

rich clubs tend to integrate modules together

21
Q

what is segregation? and measures related

A

locally, densely connected clusters of nodes

clustering, transivity and modularity

22
Q

what is integration? and measures related

A

the ability of any node to be reached in a few steps

path length, efficiency, rich club

23
Q

what is a small world network?

Describe the Watts-Strogatz model

A

A network that has both high integration and high segregation

For example the Watts-Strogatz model, that is used to generate small world networks. You start with a regular lattice, and then you rewire some of the edges with a given probability to introduce shortcuts, this makes the efficiency higher

24
Q

describe the inter-dependence of network features

A
  • density and average degree are positively correlated
  • density and path length are negatively correlated
  • density and transivity are positively correlated
  • This shows that edge density is a confound
25
what is wrong with proportional thresholding when binarizing networks based on correlation coefficient?
When you build functional connectivity networks, you often threshold them (e.g., keep only the top X% of edges). If a subject (or a group) has higher mean functional connectivity (i.e., stronger average correlations across the brain), more edges will survive thresholding — or the edges will be stronger overall. Stronger connections → shorter paths between nodes. Shorter paths → higher global efficiency. So even if the underlying network structure (wiring, organisation) hasn't changed, just having higher average correlations will mechanically lead to higher global efficiency.
26
describe Null models in network neuroscience
you take a feature of interest, e.g average clustering you then build a null network where you preserve some attributes (e.g edge density) and then randomise others you then recalculate the network p number of times to create a Null distribution. You can then benchmark your empirical network against the null distribution If your empirical network falls in the middle of the null distribution, that would suggest that the clustering arises simply as a byproduct of the edge density. If it falls outside of the distribution then the clustering isn't simply due to the edge density, it is actually related to the topology
27
what is the small world index?
the ratio of clustering to path length
28
What is the rich club coefficient?
the tendency for high degree nodes to be highly connected to each other In other words: Are the most highly connected nodes more densely interconnected among themselves than would be expected by chance?
29
how are rich club coefficient and small world index normalized?
They are normalized to random networks, according to a null model
30
strengths of graph theory
it is independent of spatial and temporal scales, species and imaging modalities It is a good way to reduce the dimensionality of data, as N nodes is often much less than N voxels
31