Learn R Programming

MoLE (version 1.0.1)

GROUP: Group words into constituents

Description

Determines each possible constituent ordering (assuming adjacency) of an utterance. Given A B C V, in which V is identified as the verb, B could be a marker of A, or C could be a marker of B.

Usage

GROUP(hearerID, analysis)

Arguments

hearerID

Pointer to the hearer agent

analysis

Analysis of the utterance in which the individual lexemes have been determined and the verb has been identified.

Value

list of all possible groupings

[[1]]

First possible grouping analysis

[[2]]

Second possible grouping analysis, if possible, etc.

Details

VerbAdpositions are for topic cross reference only, and may be put on top of verb suffixes. VerbAdpositions are reanalyzed as verbSuffix if index=TRUE and no other verb suffixes (then no proper suffix was available) Only non-local-person noun markers, to be removed if possessive marking is modelled.

See Also

INTERPRET

Examples

Run this code
# NOT RUN {
FOUND()
situation=SITUATION(1)
proposition=PROPOSITION(1, situation)
utterance=PRODUCE(1, proposition)
utterance=paste(utterance, unlist(strsplit(utterance, ' '))[1])
analysis=ANALYZE(2, utterance, situation)
GROUP(2, analysis)
# }

Run the code above in your browser using DataLab