keyword

Purpose

Finds documents that contain argument term(s) corresponding to keywords from parent node "Keyword Extraction".

Syntax

keyword([part_of_speech] [, term,…])

Arguments

All arguments are optional.

The argument part of speech is used to search for keywords of a particular part of speech:

Part-of-Speech

Synonym

Description

Examples

noun

matches nouns

event, events, conference, conferences …​

verb

matches verbs

talk, talked, talks, meets …​

adverb

advb

matches adverbs

well, generally, above …​

adjective

adjc

matches adjectives

quick, important, general …​

particle

prcl

matches particles

not, …​

pronoun

pron

matches pronouns

they, you, she, himself, me, her …​

numeral

nmrl

matches numerals

one, hundred …​

article

arcl

matches articles

a, an, the …​

preposition

prep

matches prepositions

of, to, in, at …​

interjection

intj

matches interjections

uh, wow …​

conjunction

conj

matches conjunctions

and, if …​

If the part of speech is not specified, the function will return the keywords regardless their part of speech.

The function accepts any number of part of speech arguments separated by a vertical bar("noun|adjective").

If no arguments are specified, the function matches all the keywords in the data.

Returned Value

Documents matching the query.

Examples

keyword() matches all keywords in the dataset.

keyword(noun) matches all keywords that are nouns.

keyword(noun|verb) matches all keywords that are nouns or verbs.

keyword(verb, process) matches the verb "process" if it is a keyword.