-
Notifications
You must be signed in to change notification settings - Fork 2
/
02-concordance.qmd
372 lines (225 loc) · 12.2 KB
/
02-concordance.qmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
---
title: "Concordance"
author:
- name:
given: "Gede Primahadi Wijaya"
family: "Rajeg"
url: https://www.ling-phil.ox.ac.uk/people/gede-rajeg
orcid: 0000-0002-2047-8621
affiliation:
- '<a href="https://www.ling-phil.ox.ac.uk/people/gede-rajeg" target="_blank" style="color:DodgerBlue;">University of Oxford</a> / <a href="https://www.cirhss.org/" target="_blank" style="color:DodgerBlue;">CIRHSS</a> & <a href="https://github.com/complexico" target="_blank" style="color:DodgerBlue;">CompLexico</a>, Udayana University'
format:
revealjs:
slide-number: true
preview-links: auto
css: styles.css
date: 2024-07-22
date-modified: now
editor: visual
bibliography: references.bib
csl: "https://raw.githubusercontent.com/citation-style-language/styles/master/unified-style-sheet-for-linguistics.csl"
---
## Roadmap
::: incremental
1. What is a concordance?
2. What can we learn from looking at concordance lines?
3. Common aspects to look at from concordance
4. My typical workflow in analysing concordance
5. Practice
:::
## What is a concordance?
::: incremental
- “a collection of the occurrences of a word-form, each in its own textual environment. In its simplest form, it is an index. Each word-form is indexed, and a reference is given to the place of each occurrence in a text” [@sinclair1991, 32].
- “gives contextual information about a word” [@barth2021, 82].
:::
## What is a concordance? {.scrollable}
::: columns
::: {.column width="50%"}
```{r shakespeare-conc}
#| echo: false
#| out-width: 5in
#| out-height: 6in
#| fig-cap: "A snippet of a concordance of [*charm* in Shakespeare's works](https://www.opensourceshakespeare.org/search/search-results.php?link=con&works[]=*&keyword1=charm&sortby=WorkName&pleasewait=1&msg=sr)."
#| fig-align: left
knitr::include_graphics("img/05-shakespeare-conc.png")
```
:::
::: {.column width="50%"}
“a collection of the occurrences of a word-form, each in its own textual environment. In its simplest form, it is an index. *Each [**word-form**]{style="background-color:pink;"} is indexed, and a [**reference**]{style="color:#0527C2;"} is given [**to the place of each occurrence**]{style="color:#0527C2;"} in a text*” [@sinclair1991, 32, emphases mine].
:::
:::
## What is a concordance? {.scrollable}
MS Word `find` is a kind of concordance!
```{r msword-conc}
#| echo: false
#| label: msword-conc
#| fig-align: left
#| out-width: 7in
#| out-height: 4in
#| fig-asp: .68
#| fig-width: 7
#| fig-dpi: 300
#| fig-scap: "A concordance in MS Word"
knitr::include_graphics("img/05-word-conc.png")
```
## What is a concordance? Key Word in Context (KWIC)
KWIC: a modern-day format of a concordance.
```{r ske-charm}
#| echo: false
#| out-width: 7in
#| out-height: 4in
#| fig-align: left
#| fig-dpi: 300
#| fig-width: 5
#| fig-height: 3
#| fig-subcap: "A snippet of SE's [concordance of the lemma *CHARM*](https://ske.li/15y) in _English Web 2021_"
knitr::include_graphics("img/05-ske-conc-charm-lemma.png")
```
## What is a concordance?
Take away:
- essentially a means to display (raw, unanalysed) data more efficiently
- does not perform the analysis to answer the research question
- *we*, the researcher, need to analyse them in such a way that these concordance data could provide answer to our research question(s).
- It is insufficient just to know the how-to of *corpus* linguistics, but also the *linguistics* side.
## Roadmap
::: nonincremental
~~1. What is a concordance?~~
2. What can we learn from looking at concordance lines?
3. Common aspects to look at from concordance
4. My typical workflow in analysing concordance
5. Practice
:::
## What can we learn from looking at concordance lines? {.scrollable}
Electronic concordance can be sorted (alphabetically) in various ways [@tribble2010, 175]:
- by the node/target word/lemma/phrase
- by the left context of the node
- by the right context of the node
These sorting help reveals different kinds of usages of the node [cf. @hunston2002, 42-52].
##
![](img/05-ske-conc-charm-left-context.png){.absolute top="60" left="0" width="90%"}
::: {.absolute left="30" top="20" style="font-size:.8em;"}
Left-context sorting for the [concordance of *charm*](https://ske.li/15z). Any regularity/pattern?
:::
::: {.absolute left="30" bottom="10" style="font-size:.5em;"}
Concordance link: <https://ske.li/15z>
:::
## What can we learn from looking at concordance lines? {.scrollable}
See Hunston[-@hunston2002, 42-52] for details of the following points.
- “Observing the ‘central’ and ‘typical’”
- [in frequency terms]{style="color:LightSeaGreen"}
- “Observing meaning distinctions”
- [different usage patterns of near-synonyms]{style="color:LightSeaGreen"}
- “Observing meaning and patterns”
- [distinct senses/meanings of a word and their patternings (lexical, morpho-syntactical, morphological, etc.) [cf. @gries2006]]{style="color:LightSeaGreen"}
- “[Distinguishing between the meanings is a matter of distinguishing between patterns of usage.” [@hunston2002, 47]]{style="color:SteelBlue"}
- “Observing detail”
- [mass of data, more specific observation of individual words]{style="color:LightSeaGreen"}
- e.g., [different semantic type of verbs following the phrase *advice~noun~ as to* [@hunston2002, 52]]{style="color:SteelBlue"}
## Roadmap
::: nonincremental
~~1. What is a concordance?~~
~~2. What can we learn from looking at concordance lines?~~
3. Common aspects to look at from concordance
4. My typical workflow in analysing concordance
5. Practice
:::
## Common aspect to look at from concordance {.scrollable}
See Sinclair [-@sinclair2004, Ch. 2] for further details for “The search for units of meaning”
::: incremental
- *collocation* [@sinclair2004, 28]: [“a frequent co-occurrence of words”]{style="color:crimson"}
- *colligation* [@sinclair2004, 32]: [“co-occurrence of grammatical choices”]{style="color:crimson"}
- *semantic preference*
- semantic abstraction/categorisation from a group of collocates
- example:
- categorising the semantic type of noun collocates of the EXPERIENCER argument of ANGRY vs. MAD [@suari2024]; categorisation based on the cross-linguistic semantic catalogue *Concepticon* [@list]
- [visualising the results](https://github.com/complexico/anger-mad-coca/blob/main/figs/08-fig3-8-Experiencer-collocates.png) based on the collocation strength of these collocates with the adjectives in COCA corpus
- *semantic prosody*
- pragmatic aura of the context surrounding the node word
- typically whether the context is positive or negative
- “connotation” in the traditional semantics [@mcenery2012, 136]
:::
## Roadmap
::: nonincremental
~~1. What is a concordance?~~
~~2. What can we learn from looking at concordance lines?~~
~~3. Common aspects to look at from concordance~~
4. My typical workflow in analysing concordance
5. Practice
:::
## My typical workflow in analysing concordance {.scrollable}
- Define my research question(s) (RQs)
- [usually within theoretical contexts, mainly in Cognitive Linguistics (esp. cognitive lexical semantics & construction grammar) and/or Austronesian/Indonesian linguistics.]{style="color:SteelBlue"}
- Extract concordances of the phenomenon from a corpus (not using Sketch Engine)
- remember, [concordance is *just* a way to display the raw data]{style="color:crimson"}
- [operationalise your RQs]{style="color:SteelBlue"} such that they [translate into **what** to extract]{style="color:SteelBlue"} from the corpus to retrieve the (candidate) data to be analysed (i.e., qualitatively annotated and further analysed statistically) to answer your RQs.
- Annotate/Code each line of the concordance in MS Excel/Spreadsheet software
- [identify the variable(s) to be analysed based on your research question]{style="color:SteelBlue"}
- [annotate that as columns in Excel]{style="color:SteelBlue"}; [**one variable, one column**]{style="color:crimson"}
- at this stage, [theoretical framework/linguistic skills will be important]{style="color:SteelBlue"} (at least for me)
- Statistical/quantitative analyses + visualisation in R
- [*any* statistical/programming software can be used **as long as** they provide the statistical techniques you are going to use.]{style="color:SteelBlue"}
- [very much dependent on your RQs]{style="color:crimson"}
- Report the results
## My typical workflow in analysing concordance: *Example* {.scrollable}
::: incremental
- [Topic]{style="color:MediumVioletRed"}: Indonesian diathesis [cf. @rajeg, *forthcoming*]
- [Context - Qualitative (theoretical) claim]{style="color:MediumVioletRed"} [@moeliono2017, 257; @sneddon2010, 470]:
- In Indonesian passive clause, AGENT can be **optionally** expressed
- How would we measure this optionality?
- [Context - Quantitative (null-hypothesis/theoretical) prediction]{style="color:MediumVioletRed"}:
- If we look at a sample of passive clauses (say from a corpus), the presence/absence of AGENT would be roughly equal
- [Research question]{style="color:MediumVioletRed"}:
- To what extent does AGENT is explicitly expressed or suppresed in a sample of passive clauses (with the Indonesian passive *di*- prefix)?
- [Operationalisation - corpus query]{style="color:MediumVioletRed"}:
- What should we extract from the corpus as a concordance? 🤔
- passive sentences containing verb marked with *di*-
- **No syntactic parsing** in the Indonesian corpus; what to do? 🤷
- regular expressions \[RegEx\] “`di[a-z]{5,}`”
- 50 random concordance lines for each of the total 12 genres
- Total raw data to analyse: 600 lines (50 lines \* 12 genres)
- save the concordance into tab-separated plain text to be opened in MS Excel
- [Operationalisation - annotating the concordance]{style="color:MediumVioletRed"}:
- Given the RQ, what variable/aspect would we annotate from the concordance sample? How?
- we need to annotate the presence/absence of AGENT argument such that later on we can **count**/**quantify** how much is the AGENT present/absent.
- Let's see the [concordance data](https://github.com/gederajeg/diatesis-bahasa-indonesia/blob/0.0.1/data/potential_di_passive_sample.tsv)
- [Results]{style="color:MediumVioletRed"}
- Theoretical claim: AGENT is optionally expressed in Indonesian passive with *di*-
- How would we measure this optionality?
- RQ: To what extent does AGENT is explicitly expressed or suppresed in a sample of passive clauses (with the Indonesian passive *di*- prefix)?
- Corpus finding:
```{r}
#| echo: false
#| out-width: 7in
#| out-height: 4in
knitr::include_graphics(path = "img/05-fig-long-short-passive-1.png")
```
:::
## Roadmap
::: nonincremental
~~1. What is a concordance?~~
~~2. What can we learn from looking at concordance lines?~~
~~3. Common aspects to look at from concordance~~
~~4. My typical workflow in analysing concordance~~
5. Practice
:::
## Practice {.scrollable}
- Extract concordance of a word or phrase from SkE
- Retrieve random sample from SkE
- Try to sort the concordance into more meaningful display to detect pattern
- Export to .csv/.xlsx
- Open in MS Excel
- Annotate co-occurrence of the node in terms of its:
- lexical co-occurrence (collocation)
- e.g., the subject/object of a verb; the modifier of a head noun; any recurring prepositional combination (?); others (?)
- grammatical preference of the node word
- e.g., syntactic patterning
- semantic preference
- semantic prosody
- share and discuss your finding
# End of `Concordance`
- source files for all materials:
- <https://github.com/complexico/dipscorling2024>
- pdf version as a handout [here](https://github.com/complexico/dipscorling2024/blob/main/02-concordance.pdf)
- How to cite these materials:
> Rajeg, Gede Primahadi Wijaya. 2024. Materials for the *Diponegoro Summer Course in Corpus Linguistics* (*DipSCORLING 2024*) (22 - 27 July 2024). R Quarto. Zenodo. [https://doi.org/10.5281/zenodo.12793922](https://doi.org/10.5281/zenodo.12793922). (22 July, 2024).
## References