blob: f75e2bfa0f4ec6b2dc9d85395949b5b39c7e2dd7 [file] [log] [blame]
Marc Kupietzafce9c12023-06-13 09:18:53 +02001---
2title: "News from the International Comparable Corpus"
3subtitle: "First launch of ICC written"
4date: "`r Sys.Date()`"
5author:
6 - name: Marc Kupietz
7 affil: 1
8 - name: Adrien Barbaresi
9 affil: 2
Marc Kupietzbcde0b62023-06-14 14:22:35 +020010 - name: Anna Čermáková
Marc Kupietzafce9c12023-06-13 09:18:53 +020011 affil: 3
12 - name: Małgorzata Czachor
13 affil: 4
14 - name: Nils Diewald
15 affil: 1
16 - name: Jarle Ebeling
17 affil: 5
18 - name: Rafał L. Górski
19 affil: 4
20 - name: John Kirk
21 affil: 6
22 - name: Michal Křen
23 affil: 3
24 - name: Harald Lüngen
25 affil: 1
26 - name: Eliza Margaretha
27 affil: 1
28 - name: Signe Oksefjell Ebeling
29 affil: 5
30 - name: Mícheál Ó Meachair
31 affil: 7
32 - name: Ines Pisetta
33 affil: 1
34 - name: Elaine Uí Dhonnchadha
35 affil: 8
36 - name: Friedemann Vogel
37 affil: 9
38 - name: Rebecca Wilm
39 affil: 1
40 - name: Jiajin Xu
41 affil: 10
42 - name: Rameela Yaddehige
43 affil: 1
44affiliation:
45 - num: 1
46 address: IDS Mannheim
47 - num: 2
48 address: BBAW Berlin
49 - num: 3
50 address: Charles University
51 - num: 4
52 address: Polish Academy of Sciences
53 - num: 5
54 address: University of Oslo
55 - num: 6
56 address: University of Vienna
57 - num: 7
58 address: Dublin City University
59 - num: 8
60 address: Trinity College Dublin
61 - num: 9
62 address: University of Siegen
63 - num: 10
64 address: Beijing Foreign Studies University
65
66
67logoleft_name: "../Figures/ICC_COL.svg"
68author_textsize: "32pt"
69
Marc Kupietzfbd648c2023-06-24 12:31:45 +020070contact:
Marc Kupietzf0f58822023-06-26 20:32:03 +020071 qrlink: >
72 `r posterdown::qrlink("https://korap.ids-mannheim.de/instance/icc")`
Marc Kupietzfbd648c2023-06-24 12:31:45 +020073
Marc Kupietzafce9c12023-06-13 09:18:53 +020074output:
Marc Kupietzfbd648c2023-06-24 12:31:45 +020075 posterdown::posterdown_ids:
76 self_contained: false
77 keep_md: true
Marc Kupietzbcde0b62023-06-14 14:22:35 +020078
79bibliography: ../tex/references.bib
Marc Kupietzdf8083d2023-06-26 20:31:42 +020080csl: "https://raw.githubusercontent.com/ICLC-10/Zotero/master/styles/ICLC-10.csl"
Marc Kupietzafce9c12023-06-13 09:18:53 +020081---
82
83```{r setup, include=FALSE, echo=FALSE, warning=FALSE}
Marc Kupietz48d2b522023-06-14 12:31:06 +020084knitr::opts_chunk$set(dev = 'svg', echo = FALSE, warnings = FALSE)
Marc Kupietzafce9c12023-06-13 09:18:53 +020085source("common.R")
86```
87# ICC aims & charcteristics
Marc Kupietz6a4d3a72023-06-26 20:32:39 +020088* make available comparable corpora of many languages for contrastive linguistic research [@cermakova_international_2021]
Marc Kupietzafce9c12023-06-13 09:18:53 +020089* mostly based on existing corpora
Marc Kupietz6a4d3a72023-06-26 20:32:39 +020090* ICC has a pre-defined balanced composition
91 * based on the one of the ICE [@greenbaum_comparing_1996]
Marc Kupietzafce9c12023-06-13 09:18:53 +020092
93# Current alpha launch
94
95## Composition of parts
96### By ICC genre
97
98```{r composition_by_genre, message = FALSE, fig.width=14, fig.height=10, out.width = "100%"}
99icc_genre <- icc %>%
100 expand_grid(genre) %>%
101 mutate(vc = paste0("iccGenre=", genre)) %>%
102 rowwise() %>%
103 mutate(tokens= corpusStats(icc_con(lang, token), vc = vc)@tokens)
104
105icc_genre %>% ggplot(aes(x=lang, fill=genre, y=tokens)) +
106 geom_col() + scale_y_continuous(labels = label_number(scale_cut = cut_short_scale())) +
107 theme_ids(base_size = 24) +
108 theme(
109 axis.title.x = element_text(size = rel(1.5), face = "bold"),
110 axis.title.y = element_text(size = rel(1.5), face = "bold"),
111 axis.text = element_text(size = rel(0.70)),
112 legend.title = element_text(size = rel(0.85), face = "bold"),
113 legend.text = element_text(size = rel(1))) +
114 scale_fill_ids() +
115 geom_text(aes(label=if_else(tokens > 0, as.character(tokens), ""), y=tokens), position= position_stack(reverse = F, vjust = 0.5), color="black", size=6.2, family="Fira Sans Condensed")
116
117```
118
119### By date of publication
120
121
122```{r composition_by_pubdate, message=F, warning=F, fig.width=14, fig.height=7, out.width = "100%"}
123year <- c(1986:2023)
124
125icc_year <- icc %>%
126 expand_grid(year) %>%
127 mutate(vc = paste0("pubDate in ", year)) %>%
128 rowwise() %>%
129 mutate(tokens= corpusStats(icc_con(lang, token), vc = vc)@tokens)
130
131icc_year %>% ggplot(aes(x=year, fill=lang, color=lang, y=tokens)) +
132 # geom_smooth(se=F, span=0.25) +
133 xlim(1990, 2023) +
134 ylim(0, NA) +
135 stat_smooth(
136 geom = 'area', method = 'loess', span = 1/4,
137 alpha = 0.1) +
138 # geom_area(alpha=0.1, position = "identity") +
139 scale_fill_ids() + scale_colour_ids() +
140 scale_y_continuous(labels = label_number(scale_cut = cut_short_scale())) +
141 theme_ids(base_size=24) +
142 theme(
143 axis.title.x = element_text(size = rel(1.5), face = "bold"),
144 axis.title.y = element_text(size = rel(1.5), face = "bold"),
145 axis.text = element_text(size = rel(1)),
146 legend.title = element_text(size = rel(1), face = "bold"),
147 legend.text = element_text(size = rel(1)))
148```
149
Marc Kupietzafce9c12023-06-13 09:18:53 +0200150
Marc Kupietz4e3ab832023-06-26 20:33:18 +0200151# Pilot study
Marc Kupietzafce9c12023-06-13 09:18:53 +0200152
Marc Kupietz4e3ab832023-06-26 20:33:18 +0200153* Identification of Light Verb Constructions with *take*
154* in order to investigate the limitations imposed by the very small corpus sizes
155* using RKorapClient [@kupietz_rkorapclient_2020] to access corpora and get reproducible results of the collocation analysis
Marc Kupietzafce9c12023-06-13 09:18:53 +0200156
Marc Kupietzafce9c12023-06-13 09:18:53 +0200157
158# Identification of Light Verb Constructions with *take*
159
160
161## English: *take*
162
163```{r take_icc, echo=TRUE, message=FALSE}
164take_ca_icc <-
165 collocationAnalysis(
166 icc_con("eng"),
167 "focus({[ud/l=take]} [ud/p=NOUN])",
168 leftContextSize = 0,
169 rightContextSize = 1,
170 minOccur = 2,
171 addExamples = T
172 )
173
174take_ca_icc %>% show_table()
175```
176
Marc Kupietzbcde0b62023-06-14 14:22:35 +0200177# References
178
Marc Kupietzafce9c12023-06-13 09:18:53 +0200179