Department of Psychology, National University of Singapore
Email: cynthia@nus.edu.sg
Website: http://hello.csqsiew.xyz
What is Network Science?
What is a network made up of?
The mental lexicon as a network
Examples of language networks
Network Science uses techniques from Mathematics, Sociology, Physics, Computer Science, and other fields to model a complex system.
A Complex System consists of independent units that interact locally in simple ways to produce unexpected global behavior.
The Seven Bridges of Königsberg Problem: Is it possible to only cross each bridge once while visiting all islands?
The Seven Bridges of Königsberg Problem: Is it possible to only cross each bridge once while visiting all islands?
Euler showed that there was no solution. He showed this by developing a new technique for analyzing networks (graph theory).
Networks are simple.
Networks are everywhere (once you know what to look for).
Networks are useful.
Networks are powerful.
All networks have the following:
Representational formats
network <- matrix( data = sample(0:1, size = 25, replace = TRUE), nrow = 5, ncol = 5)network
## [,1] [,2] [,3] [,4] [,5]## [1,] 1 1 1 0 0## [2,] 1 1 1 1 1## [3,] 0 0 1 0 1## [4,] 1 0 1 0 1## [5,] 0 1 0 1 0
In network science, there are four types of edges:
Undirected | Directed | |
---|---|---|
Unweighted | twitter, instagram | |
Weighted | facebook + number of interactions | twitter + likes |
❗ In this tutorial we will deal mostly with simple networks that have undirected, unweighted edges. But you should keep in mind that edges can carry additional information as well and there are techniques for analyzing this information.
Each row/column = 1 node
Each cell = presence or absence of edge
## 1 2 3 4 5 6 7 8 9 10## 1 0 1 0 0 1 1 0 0 0 0## 2 1 0 0 0 0 0 1 0 0 0## 3 0 0 0 1 0 0 0 1 0 0## 4 0 0 1 0 1 0 0 0 0 0## 5 1 0 0 1 0 0 0 0 0 1## 6 1 0 0 0 0 0 1 0 0 1## 7 0 1 0 0 0 1 0 1 0 0## 8 0 0 1 0 0 0 1 0 1 0## 9 0 0 0 0 0 0 0 1 0 1## 10 0 0 0 0 1 1 0 0 1 0
Each row = 1 edge between node X and node Y
V1 | V2 |
---|---|
1 | 2 |
1 | 6 |
1 | 5 |
1 | 15 |
1 | 21 |
2 | 14 |
2 | 7 |
2 | 22 |
3 | 4 |
3 | 8 |
Psycholinguistics is the study of psychological processes related to understanding, producing, remembering, acquiring language.
But what is language? Language is a system of symbols and rules used for human communication.
Psycholinguistics is the study of psychological processes related to understanding, producing, remembering, acquiring language.
But what is language? Language is a system of symbols and rules used for human communication.
How can we leverage on network science methods to study memory structures that we can't directly observe?
The mental lexicon is generally accepted as the set of words and concepts known to an individual that is stored in that person's long-term memory.
Semantic memory is the part of long-term memory that stores general facts and information about the world.
There is a lot of structure within these systems! Linguistic units are not independent of each other, and have complex, varied relationships with each other.
What counts as a node?
What counts as a node?
What counts as an edge?
Phonological network (Vitevitch, 2008)
Phonological network (Vitevitch, 2008)
Orthographic network (Siew, 2018)
Vitevitch, M. S. (2008). What can graph theory tell us about word learning and lexical retrieval?. 51(2): 408–422.
Luce, P. A., & Pisoni, D. B. (1998). Recognizing spoken words: The neighborhood activation model. Ear and Hearing, 19(1), 1-36.
Siew, C. S. Q. (2018). The orthographic similarity structure of English words. Insights from network science. Applied Network Science. 3:13.
Free association network (De Deyne et al., 2020)
Free association network (De Deyne et al., 2020)
Feature network (Engelthaler & Hills, 2017)
De Deyne, S., Navarro, D. J., Perfors, A., Brysbaert, M., & Storms, G. (2019). The “Small World of Words” English word association norms for over 12,000 cue words. Behavior Research Methods, 51(3), 987-1006.
Engelthaler, T., & Hills, T. T. (2017). Feature biases in early word learning: Network distinctiveness predicts age of acquisition. Cognitive Science, 41, 120-140.
McRae, K., Cree, G. S., Seidenberg, M. S., & McNorgan, C. (2005). Semantic feature production norms for a large set of living and nonliving things. Behavior Research Methods, 37(4), 547-559.
Co-occurrence network (Ferrer-i-Cancho & Sole, 2001)
Cancho, R. F. I., & Solé, R. V. (2001). The small world of human language. Proceedings of the Royal Society of London. Series B: Biological Sciences, 268(1482), 2261-2265.
Well-connected words in the semantic network are better learned, recalled, and retrieved than words that are less well-connected.
Mak, M. H., & Twitchell, H. (2020). Evidence for preferential attachment: Words that are more well connected in semantic networks are better at acquiring new links in paired-associate learning. Psychonomic Bulletin & Review, 27(5), 1059-1069. De Deyne, S., Navarro, D. J., Perfors, A., Brysbaert, M., & Storms, G. (2019). The “Small World of Words” English word association norms for over 12,000 cue words. Behavior Research Methods, 51(3), 987-1006.
Words with higher clustering coefficients are more slowly recognized than words with lower clustering coefficients in spoken word recognition tasks.
Chan, K. Y., & Vitevitch, M. S. (2009). The influence of the phonological neighborhood clustering coefficient on spoken word recognition. Journal of Experimental Psychology: Human Perception and Performance, 35(6), 1934-1949. Chan, K. Y., & Vitevitch, M. S. (2010). Network structure influences speech production. Cognitive Science, 34(4), 685-697.
Dictionaries, thesauri, corpora, psycholinguistic megastudies, databases... You could also collect your own data to create networks.
In most cases, the data is already in a format suitable for network analysis (e.g., free association and feature listing data are already in a form of an edge list). If not, the data can be easily converted into network formats with some data wrangling.
Some resources:
langnetr
package was built to help the user easily convert lists of words into network objects based on an edit distance of 1. This package would work for phonological transcriptions and orthographic representations of words (of alphabetic languages).What is Network Science?
What is a network made up of?
The mental lexicon as a network
Examples of language networks
Keyboard shortcuts
↑, ←, Pg Up, k | Go to previous slide |
↓, →, Pg Dn, Space, j | Go to next slide |
Home | Go to first slide |
End | Go to last slide |
Number + Return | Go to specific slide |
b / m / f | Toggle blackout / mirrored / fullscreen mode |
c | Clone slideshow |
p | Toggle presenter mode |
t | Restart the presentation timer |
?, h | Toggle this help |
Esc | Back to slideshow |