Alex LoPilato and Ben Listyg
Reframe theories of psychological phenomena as a dynamic system of interactions among observable variables, which are referred to as autonomous causal entities.
Most network psychometric theories pull from the literature on dynamic systems and complex systems. An example is considering depression not as a construct, but as an attractor state of the depression system.
Network psychometric analysis relies heavily on a class of statistical models called graphical models to estimate the network that underlies the observed variables.
One of the most common ways to estimate the underlying network is to use a model called the Gaussian Graphical Model, which is just a partial correlation matrix.
Networks (graphs) are mathematical objects that represent connections among different entities.
Mathematically, networks consist of a:
The easiest way to mathematically manipulate a network is to turn it into a matrix. This matrix is referred to as an adjacency matrix.
Non-zero elements in the matrix represent connections between two nodes in the network.
[,1] [,2] [,3] [,4] [,5] [,6]
[1,] 0 1 1 0 0 1
[2,] 1 0 1 1 0 0
[3,] 1 1 0 0 0 0
[4,] 0 1 0 0 1 1
[5,] 0 0 0 1 0 1
[6,] 1 0 0 1 1 0
[,1] [,2] [,3] [,4] [,5] [,6]
[1,] 0.0 0.5 0.4 0.0 0.0 -0.1
[2,] 0.5 0.0 0.3 -0.3 0.0 0.0
[3,] 0.4 0.3 0.0 0.0 0.0 0.0
[4,] 0.0 -0.3 0.0 0.0 0.4 0.3
[5,] 0.0 0.0 0.0 0.4 0.0 0.2
[6,] -0.1 0.0 0.0 0.3 0.2 0.0
Centrality is a class of network metrics that measure the importance of a given node by counting and, at times, weighting the number of direct or indirect connections a node has with other nodes.
Centrality metrics can be subdivided into:
Degree Centrality:
\[\sum_{j=1}^{n}{a_{ij}}\]
Strength:
\[\sum_{j=1}^{n}{\lvert w_{ij}\rvert}\]
Weighted Degree Centrality:
\[\sum_{j=1}^{n}{a_{ij}^{1-\alpha}\lvert w_{ij}\rvert^{\alpha}}\]
Expected Influence:
\[\sum_{j=1}^{n}{a_{ij}w_{ij}}\]
qgraph
ExampleLength: The distance between two nodes.
\[\text{Length}(i, j)=\frac{1}{\rvert w_{ij} \lvert^{\alpha}}\]
Distance: The shortest path between two nodes.
\[\text{Distance}(i, j)=min(w_{ik}+ \dots + w_{lj})\]
Closeness:
\[\frac{1}{\sum_{j=1}^{n}\text{Distance}(i,j)}\]
Betweeness:
\[\sum_{<j,k>}\frac{\text{# shortest paths from j to k that go through i}}{\text{# shortest paths between j and k}}\]
Expected Influence Two:
\[\sum_{j=1}^{n}a_{ij}w_{ij}+\sum_{j=1}^{n}a_{ij}w_{ij}\sum_{k=1}^{n}a_{jk}w_{jk}\]
Clustering is a metric that looks at how often two nodes that are connected to the same focal node are also connected to one another: the friend of my friend is also my friend.
I haven’t seen this used a whole lot in psychometric network analysis.
\[\text{Density}=\frac{\text{# Observed Edges}}{\text{# Possible Edges}}=\frac{\sum_{<i, j>}a_{ij}}{n(n-1)}\]
In network analysis, community detection is a set of algorithms that attempt to find hidden communities within a network by identifying sets of nodes that have more connections among themselves than they have with other nodes outside of the set.
Common algorithms:
In Part 1, you learned the theory and rationale and math of psychometric networks
In Part 2, we learn how to DO estimation of psychometric networks
Networks serve as an abstraction to represent the relationships (edges) between entities (nodes)
KEY!!!
Networks serve as an abstraction to represent the relationships (edges) between entities (nodes)
DISTINGUISHING!!!
Networks serve as an abstraction to represent the relationships (edges) between entities (nodes)
FACTOR!!!
In social networks, your data both nodes and edges that are observed
Obvi there are more complex situations where you have missing data
This is neither time nor place for that though…
I/O context:
Clinical:
Developmental
When do psychometric network analysis / using psychometric network models:
All your nodes (items) are observed
You are e s t i m a t i n g the relationships (edges) between nodes (items)
When do psychometric network analysis / using psychometric network models:
All your nodes (items) are observed
You are e s t i m a t i n g the relationships (edges) between nodes (items)
How do we do that?
Analyze data
Time for F U N
We can do this with raw data OR correlation matrix
Rows: 6
Columns: 28
$ A1 <int> 2, 2, 5, 4, 2, 6
$ A2 <int> 4, 4, 4, 4, 3, 6
$ A3 <int> 3, 5, 5, 6, 3, 5
$ A4 <int> 4, 2, 4, 5, 4, 6
$ A5 <int> 4, 5, 4, 5, 5, 5
$ C1 <int> 2, 5, 4, 4, 4, 6
$ C2 <int> 3, 4, 5, 4, 4, 6
$ C3 <int> 3, 4, 4, 3, 5, 6
$ C4 <int> 4, 3, 2, 5, 3, 1
$ C5 <int> 4, 4, 5, 5, 2, 3
$ E1 <int> 3, 1, 2, 5, 2, 2
$ E2 <int> 3, 1, 4, 3, 2, 1
$ E3 <int> 3, 6, 4, 4, 5, 6
$ E4 <int> 4, 4, 4, 4, 4, 5
$ E5 <int> 4, 3, 5, 4, 5, 6
$ N1 <int> 3, 3, 4, 2, 2, 3
$ N2 <int> 4, 3, 5, 5, 3, 5
$ N3 <int> 2, 3, 4, 2, 4, 2
$ N4 <int> 2, 5, 2, 4, 4, 2
$ N5 <int> 3, 5, 3, 1, 3, 3
$ O1 <int> 3, 4, 4, 3, 3, 4
$ O2 <int> 6, 2, 2, 3, 3, 3
$ O3 <int> 3, 4, 5, 4, 4, 5
$ O4 <int> 4, 3, 5, 3, 3, 6
$ O5 <int> 3, 3, 2, 5, 3, 1
$ gender <int> 1, 2, 2, 2, 1, 2
$ education <int> NA, NA, NA, NA, NA, 3
$ age <int> 16, 18, 17, 17, 17, 21
The previous network was an unregularized
This means all edges were estimated, even super tiny ones
But, what happens if we ~ regularize ~ it?
Quick aside:
What is regularization?
A process of “shrinking” tiny values towards zero.
What we can see is that the correlation matrix is much more “sparse”
There are substantially more 0’s all over the place and the previously bigger values are smaller than before.
What does this regularized network look like?
Why do we regularize?
Separating signal from noise
We know everything is (to a degree) correlated with everything
Regularization helps siphon the signal from the noise and what’s left over is “truth” and aid with selecting the “true” model.
Now that we’ve estimated a psychometric network… what can we do?
1) Estimate global network properties
2) Estimate individual node properties
1) Estimate global network properties
Example: Smallworldness
Substantive value: Lots of networks have smallworld properties (see Jonathan Kleinberg or Aaron Clauset’s work on this for example of small-world networks all over the place). A smallworld network implies any two nodes in the network can reach each other through a short sequence of other nodes (Kleinberg, 2001)
Daleage et al. (2016) demonstrate that attitudinal networks display smallworld characteristics
Carter et al. (2020) demonstrate the utility of smallworld networks for predicting turnover
.
smallworldness 1.0313728
trans_target 0.5317888
averagelength_target 1.4800000
trans_rnd_M 0.5156428
trans_rnd_lo 0.4913712
trans_rnd_up 0.5414952
averagelength_rnd_M 1.4800867
averagelength_rnd_lo 1.4800000
averagelength_rnd_up 1.4833333
2) Estimate individual node properties
Betweenness Closeness
N4 72 0.002830050
N3 62 0.002534412
C5 57 0.002721057
E4 54 0.002948168
A3 48 0.002689122
A2 46 0.002580368
Additional things you can do with networks:
Community Detection
Network Comparison Test (NCT)
Do different groups have the same / different network structures?
BIG open area for research imo
Lots of existing work on graph comparisons in CS / Stats
How does it translate to psychometric data?