Frequency breakdown
from the drop-down menu in the upper right corner and clicking on Go
.Word
and lemma
are called positional attributes in CQP.word, lemma
and pos
(part-of-speech).[]
.[attribute="value"]
, e.g., [lemma="word"]
attribute
specifies the type of annotation (word, lemma or part-of-speech), the value
specifies the search string.Try out:
[word="search.+"]
[word="search.{2}"]
[word="search.{2,3}"]
and check the results using Frequency breakdown
Execute the querie below and check the results using Frequency breakdown
[word="[a-zA-Z]orse"]
You can also negate a character set using ^
inside the scquare brackets.
[word="[^whm]orse"]
Frequency breakdown
determiners or nouns:
[pos="DT|NN"]
verbs (including full verbs, auxiliary verbs but no modals)
[pos="V.*"]
full verbs only:
[pos="VV.*"]
full verbs in the past tense
[pos="VV[DN]"]
verbs beginning with under or over
[(pos = "V.*") & (word = "(under|over).+")]