Co-occurrence Analysis — Word Co-occurrence
Word Co-occurrence Analysis · Also known as: word co-occurrence, co-occurrence network, Kelime Eş-Oluşum Analizi
Co-occurrence analysis is a text-mining technique that statistically counts the word pairs that appear together within a window or a sentence and uses their frequencies to reveal semantic maps and thematic structure. It rests on the distributional principle articulated by J.R. Firth in 1957 — that a word is characterised by the company it keeps.
Read the full method
Sign in with a free account to read this section.
Method map
The neighbourhood of related methods — select a node to explore.
When to use it
Use co-occurrence analysis when you have text data and want to explore relationships and thematic structure between terms rather than test a hypothesis. It suits exploratory and relational goals on a corpus of at least roughly thirty documents. It assumes you have removed stop-words, chosen a context window size, and preprocessed the text; without text data the method cannot run.
Strengths & limitations
- Simple and interpretable — counts of word pairs are easy to understand and visualise as a network.
- Surfaces themes and concept clusters from unstructured text without requiring labelled data.
- Grounded in the well-established distributional principle that related words share contexts.
- Results depend heavily on the chosen context window size and on the quality of stop-word removal.
- Raw frequency counts can be dominated by common terms unless preprocessing is careful.
- Captures association, not causation or directed semantic relations between the paired words.
Frequently asked
How should I choose the context window size?
There is no universal answer — it is a deliberate parameter. A wider window (e.g. a whole sentence or many tokens) captures looser topical association, while a narrower window captures tighter, more syntactic pairings. Choose it to match the kind of relationship you want to surface, and report the value you used.
Why is stop-word removal so important here?
Function words like 'the' and 'and' co-occur with almost everything, so without removing them the co-occurrence matrix is dominated by uninformative pairs that hide the real associations between content words.
Does high co-occurrence mean two words are truly related?
Not necessarily. Strong co-occurrence is evidence of association, but it can also reflect that both words are simply very frequent. It captures association rather than a directed or causal semantic relation, so interpret clusters with care.
How much text do I need?
The method expects a corpus of at least roughly thirty documents. With fewer, the co-occurrence counts become unstable and noisy, and the resulting map is unreliable.
Sources
- Firth, J.R. (1957). A Synopsis of Linguistic Theory. Studies in Linguistic Analysis. Oxford: Blackwell. link ↗
- Turney, P.D. & Pantel, P. (2010). From Frequency to Meaning: Vector Space Models of Semantics. Journal of Artificial Intelligence Research, 37, 141-188. DOI: 10.1613/jair.2934 ↗
How to cite this page
ScholarGate. (2026, June 1). Word Co-occurrence Analysis. ScholarGate. https://scholargate.app/en/text-mining/co-occurrence-analysis
Which method?
Set this method beside its closest kin and read them side by side — the library lays the books on the table; the choice is yours.
- Keyword ExtractionText mining↔ compare
- Sentiment AnalysisText mining↔ compare
- TF-IDFText mining↔ compare
- Topic ModelingDeep learning↔ compare