blob: e7a19fe9edd77754b1c733ba382f59f8d0121685 [file] [log] [blame]
Marc Kupietzdbd431a2021-08-29 12:17:45 +02001% Generated by roxygen2: do not edit by hand
2% Please edit documentation in R/collocationAnalysis.R
3\name{collocationAnalysis,KorAPConnection-method}
4\alias{collocationAnalysis,KorAPConnection-method}
5\alias{collocationAnalysis}
6\title{Collocation analysis}
7\usage{
8\S4method{collocationAnalysis}{KorAPConnection}(
9 kco,
10 node,
11 vc = "",
12 lemmatizeNodeQuery = FALSE,
13 minOccur = 5,
14 leftContextSize = 5,
15 rightContextSize = 5,
16 topCollocatesLimit = 200,
17 searchHitsSampleLimit = 20000,
18 ignoreCollocateCase = FALSE,
19 withinSpan = ifelse(exactFrequencies, "base/s=s", ""),
20 exactFrequencies = TRUE,
21 stopwords = RKorAPClient::synsemanticStopwords(),
22 seed = 7,
23 expand = length(vc) != length(node),
Marc Kupietz5a336b62021-11-27 17:51:35 +010024 maxRecurse = 0,
25 addExamples = TRUE,
Marc Kupietz419f21f2021-12-07 10:27:30 +010026 thresholdScore = "logDice",
27 threshold = 2,
Marc Kupietz5a336b62021-11-27 17:51:35 +010028 localStopwords = c(),
Marc Kupietz47d0d2b2021-12-19 16:38:52 +010029 collocateFilterRegex = "^[:alnum:]+-?[:alnum:]*$",
Marc Kupietzdbd431a2021-08-29 12:17:45 +020030 ...
31)
32}
33\arguments{
Marc Kupietz67edcb52021-09-20 21:54:24 +020034\item{kco}{\code{\link[=KorAPConnection]{KorAPConnection()}} object (obtained e.g. from \code{new("KorAPConnection")}}
Marc Kupietzdbd431a2021-08-29 12:17:45 +020035
36\item{node}{target word}
37
38\item{vc}{string describing the virtual corpus in which the query should be performed. An empty string (default) means the whole corpus, as far as it is license-wise accessible.}
39
Marc Kupietz67edcb52021-09-20 21:54:24 +020040\item{lemmatizeNodeQuery}{if TRUE, node query will be lemmatized, i.e. \verb{x -> [tt/l=x]}}
Marc Kupietzdbd431a2021-08-29 12:17:45 +020041
42\item{minOccur}{minimum absolute number of observed co-occurrences to consider a collocate candidate}
43
44\item{leftContextSize}{size of the left context window}
45
46\item{rightContextSize}{size of the right context window}
47
48\item{topCollocatesLimit}{limit analysis to the n most frequent collocates in the search hits sample}
49
50\item{searchHitsSampleLimit}{limit the size of the search hits sample}
51
52\item{ignoreCollocateCase}{logical, set to TRUE if collocate case should be ignored}
53
54\item{withinSpan}{KorAP span specification for collocations to be searched within}
55
56\item{exactFrequencies}{if FALSE, extrapolate observed co-occurrence frequencies from frequencies in search hits sample, otherwise retrieve exact co-occurrence frequencies}
57
58\item{stopwords}{vector of stopwords not to be considered as collocates}
59
60\item{seed}{seed for random page collecting order}
61
62\item{expand}{if TRUE, \code{node} and \code{vc} parameters are expanded to all of their combinations}
63
Marc Kupietz7d400e02021-12-19 16:39:36 +010064\item{maxRecurse}{apply collocation analysis recursively \code{maxRecurse} times}
65
66\item{addExamples}{If TRUE, examples for instances of collocations will be added in a column \code{example}. This makes a difference in particular if \code{node} is given as a lemma query.}
67
68\item{thresholdScore}{association score function (see \code{\link{association-score-functions}}) to use for computing the threshold that is applied for recursive collocation analysis calls}
69
70\item{threshold}{minimum value of \code{thresholdScore} function call to apply collocation analysis recursively}
71
72\item{localStopwords}{vector of stopwords that will not be considered as collocates in the current function call, but that will not be passed to recursive calls}
73
Marc Kupietz47d0d2b2021-12-19 16:38:52 +010074\item{collocateFilterRegex}{allow only collocates matching the regular expression}
75
Marc Kupietz67edcb52021-09-20 21:54:24 +020076\item{...}{more arguments will be passed to \code{\link[=collocationScoreQuery]{collocationScoreQuery()}}}
Marc Kupietzdbd431a2021-08-29 12:17:45 +020077}
78\value{
79Tibble with top collocates, association scores, corresponding URLs for web user interface queries, etc.
80}
81\description{
Marc Kupietz67edcb52021-09-20 21:54:24 +020082\ifelse{html}{\href{https://lifecycle.r-lib.org/articles/stages.html#experimental}{\figure{lifecycle-experimental.svg}{options: alt='[Experimental]'}}}{\strong{[Experimental]}}
Marc Kupietzdbd431a2021-08-29 12:17:45 +020083
84Performs a collocation analysis for the given node (or query)
85in the given virtual corpus.
86}
87\details{
88The collocation analysis is currently implemented on the client side, as some of the
89functionality is not yet provided by the KorAP backend. Mainly for this reason
90it is very slow (several minutes, up to hours), but on the other hand very flexible.
91You can, for example, perform the analysis in arbitrary virtual corpora, use complex node queries,
92and look for expression-internal collocates using the focus function (see examples and demo).
93
94To increase speed at the cost of accuracy and possible false negatives,
95you can decrease searchHitsSampleLimit and/or topCollocatesLimit and/or set exactFrequencies to FALSE.
96
97Note that currently not the tokenization provided by the backend, i.e. the corpus itself, is used, but a tinkered one.
98This can also lead to false negatives and to frequencies that differ from corresponding ones acquired via the web
99user interface.
100}
101\examples{
Marc Kupietz6ae76052021-09-21 10:34:00 +0200102\dontrun{
103
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200104 # Find top collocates of "Packung" inside and outside the sports domain.
105 new("KorAPConnection", verbose = TRUE) \%>\%
106 collocationAnalysis("Packung", vc=c("textClass=sport", "textClass!=sport"),
107 leftContextSize=1, rightContextSize=1, topCollocatesLimit=20) \%>\%
108 dplyr::filter(logDice >= 5)
109}
110
Marc Kupietz6ae76052021-09-21 10:34:00 +0200111\dontrun{
112
Marc Kupietzdbd431a2021-08-29 12:17:45 +0200113# Identify the most prominent light verb construction with "in ... setzen".
114# Note that, currently, the use of focus function disallows exactFrequencies.
115new("KorAPConnection", verbose = TRUE) \%>\%
116 collocationAnalysis("focus(in [tt/p=NN] {[tt/l=setzen]})",
117 leftContextSize=1, rightContextSize=0, exactFrequencies=FALSE, topCollocatesLimit=20)
118}
119
120}
121\seealso{
122Other collocation analysis functions:
123\code{\link{association-score-functions}},
124\code{\link{collocationScoreQuery,KorAPConnection-method}},
125\code{\link{synsemanticStopwords}()}
126}
127\concept{collocation analysis functions}