getWord {wordnet}R Documentation

Get synset word

Description

Get the words in a synset.

Usage

getWord(synset)

Arguments

synset The synset whose words are returned.

Value

A character vector holding the words.

Author(s)

Ingo Feinerer

References

M. Wallace (2007). Jawbone Java WordNet API. http://mfwallace.googlepages.com/jawbone.html

See Also

getSynsets

Examples

validInstallation <- initDict()
if (validInstallation) {
    dict <- getDictInstance()
    filter <- getTermFilter("ExactMatchFilter", "hot", TRUE)
    terms <- getIndexTerms(dict, "ADJECTIVE", 5, filter)
    synsets <- getSynsets(terms[[1]])
    related <- getRelatedSynsets(synsets[[1]], "!")
    sapply(related, getWord)
}

[Package wordnet version 0.1-1 Index]