blob: cf61167515c2cbf3bb2b1cd5cf1a828dfd99e294 [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```
32# Plain collocation analysis
33
34without restriction to NN/subst
35
36## da(wa)?ć
37
38```{r dac_simple, echo=TRUE}
39collocationAnalysis(
40 nkjp,
41 '[nkjp/l="da(wa)?ć"]',
42 leftContextSize = 5,
43 rightContextSize = 5,
44 minOccur = 5
45 ) %>%
46 show_simple_table()
47```
48
49# Identification of Light Verb Constructions
50using collocation analysis
51
52## da(wa)?ć
53
54```{r dac, echo=TRUE}
55collocationAnalysis(
56 nkjp,
57 'focus({[nkjp/l="da(wa)?ć"] []{,5}} [nkjp/p=subst])',
58 leftContextSize = 0,
59 rightContextSize = 1, # relative to { ... } in focus(),
60 minOccur = 5,
61 addExamples = TRUE
62 ) %>%
63 show_table()
64```
65
66### (Z)robić
67
68```{r robic, echo=TRUE}
69collocationAnalysis(
70 nkjp,
71 'focus({[nkjp/l="z?robić"] []{,5}} [nkjp/p=subst])',
72 leftContextSize = 0,
73 rightContextSize = 1, # relative to { ... } in focus(),
74 minOccur = 5,
75 addExamples = TRUE
76 ) %>%
77 show_table()
78```
79
80```{r brac, echo=TRUE}
81collocationAnalysis(
82 nkjp,
83 'focus({[nkjp/l="brać" | nkjp/l="wziąć"] []{,5}} [nkjp/p=subst])',
84 leftContextSize = 0,
85 rightContextSize = 1, # relative to { ... } in focus(),
86 minOccur = 5,
87 addExamples = TRUE
88 ) %>%
89 show_table()