blob: a7e4ed8882f3e2f07b1545da9685311bfa1c3a22 [file] [log] [blame]
Marc Kupietz686c4312023-06-23 15:41:44 +02001---
2title: "Assembling EuReCo for Contrastive Research"
3subtitle: "The Polish Piece"
4author:
5 - name: Piotr Bański
6 - name: Nils Diewald
7 - name: Marc Kupietz
8 - name: Beata Trawiński
9affiliation:
10 address: IDS Mannheim
11column_numbers: 2
12contact:
13 name: Piotr Bański
Marc K4853d6a2023-06-24 18:27:47 +020014 department: Digital Linguistics / Grammar
Marc Kupietz686c4312023-06-23 15:41:44 +020015 email: banski@ids-mannheim.de
Marc K4853d6a2023-06-24 18:27:47 +020016 website: "https://www.ids-mannheim.de/"
17 qrlink: >
18 `r posterdown::qrlink("https://korap.ids-mannheim.de/instance/nkjp1m-sgjp")`
Marc Kupietz686c4312023-06-23 15:41:44 +020019output:
20 posterdown::posterdown_ids:
21 self_contained: false
22 keep_md: true
23
24bibliography: references.bib
25csl: "https://raw.githubusercontent.com/ICLC-10/Zotero/master/styles/ICLC-10.csl"
26---
27
28```{r setup, include=FALSE, echo=FALSE, message=FALSE, warning=FALSE}
29knitr::opts_chunk$set(dev = 'svg', echo = FALSE, warning = FALSE)
30source("common.R")
31```
Marc K66264002023-06-27 13:29:38 +020032# Romanian
33
34## CA in CoRoLa for »pune în NN« (= to put in NN)
35
36```{r pune_in}
37pune_in_ca_de = readRDS("pune_in_CA_de.rds")
38pune_in_ca_de %>% show_simple_table(10)
39```
40
41
Marc Kupietz686c4312023-06-23 15:41:44 +020042# Plain collocation analysis
43
44without restriction to NN/subst
45
46## da(wa)?ć
47
48```{r dac_simple, echo=TRUE}
49collocationAnalysis(
50 nkjp,
51 '[nkjp/l="da(wa)?ć"]',
52 leftContextSize = 5,
53 rightContextSize = 5,
54 minOccur = 5
55 ) %>%
56 show_simple_table()
57```
58
59# Identification of Light Verb Constructions
60using collocation analysis
61
62## da(wa)?ć
63
64```{r dac, echo=TRUE}
65collocationAnalysis(
66 nkjp,
67 'focus({[nkjp/l="da(wa)?ć"] []{,5}} [nkjp/p=subst])',
68 leftContextSize = 0,
69 rightContextSize = 1, # relative to { ... } in focus(),
70 minOccur = 5,
71 addExamples = TRUE
72 ) %>%
73 show_table()
74```
75
76### (Z)robić
77
78```{r robic, echo=TRUE}
79collocationAnalysis(
80 nkjp,
81 'focus({[nkjp/l="z?robić"] []{,5}} [nkjp/p=subst])',
82 leftContextSize = 0,
83 rightContextSize = 1, # relative to { ... } in focus(),
84 minOccur = 5,
85 addExamples = TRUE
86 ) %>%
87 show_table()
88```
89
90```{r brac, echo=TRUE}
91collocationAnalysis(
92 nkjp,
93 'focus({[nkjp/l="brać" | nkjp/l="wziąć"] []{,5}} [nkjp/p=subst])',
94 leftContextSize = 0,
95 rightContextSize = 1, # relative to { ... } in focus(),
96 minOccur = 5,
97 addExamples = TRUE
98 ) %>%
99 show_table()