getWord {wordnet} | R Documentation |
Get the words in a synset.
getWord(synset)
synset |
The synset whose words are returned. |
A character vector holding the words.
Ingo Feinerer
M. Wallace (2007). Jawbone Java WordNet API. http://mfwallace.googlepages.com/jawbone.html
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) }