Marc Kupietz | 686c431 | 2023-06-23 15:41:44 +0200 | [diff] [blame] | 1 | --- |
| 2 | title: "Assembling EuReCo for Contrastive Research" |
| 3 | subtitle: "The Polish Piece" |
| 4 | author: |
| 5 | - name: Piotr Bański |
| 6 | - name: Nils Diewald |
| 7 | - name: Marc Kupietz |
| 8 | - name: Beata Trawiński |
| 9 | affiliation: |
| 10 | address: IDS Mannheim |
| 11 | column_numbers: 2 |
| 12 | contact: |
| 13 | name: Piotr Bański |
Marc K | 4853d6a | 2023-06-24 18:27:47 +0200 | [diff] [blame^] | 14 | department: Digital Linguistics / Grammar |
Marc Kupietz | 686c431 | 2023-06-23 15:41:44 +0200 | [diff] [blame] | 15 | email: banski@ids-mannheim.de |
Marc K | 4853d6a | 2023-06-24 18:27:47 +0200 | [diff] [blame^] | 16 | website: "https://www.ids-mannheim.de/" |
| 17 | qrlink: > |
| 18 | `r posterdown::qrlink("https://korap.ids-mannheim.de/instance/nkjp1m-sgjp")` |
Marc Kupietz | 686c431 | 2023-06-23 15:41:44 +0200 | [diff] [blame] | 19 | output: |
| 20 | posterdown::posterdown_ids: |
| 21 | self_contained: false |
| 22 | keep_md: true |
| 23 | |
| 24 | bibliography: references.bib |
| 25 | csl: "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} |
| 29 | knitr::opts_chunk$set(dev = 'svg', echo = FALSE, warning = FALSE) |
| 30 | source("common.R") |
| 31 | ``` |
| 32 | # Plain collocation analysis |
| 33 | |
| 34 | without restriction to NN/subst |
| 35 | |
| 36 | ## da(wa)?ć |
| 37 | |
| 38 | ```{r dac_simple, echo=TRUE} |
| 39 | collocationAnalysis( |
| 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 |
| 50 | using collocation analysis |
| 51 | |
| 52 | ## da(wa)?ć |
| 53 | |
| 54 | ```{r dac, echo=TRUE} |
| 55 | collocationAnalysis( |
| 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} |
| 69 | collocationAnalysis( |
| 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} |
| 81 | collocationAnalysis( |
| 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() |