getRelatedSynsets | R Documentation |
Get related synsets for a given synset based on a pointer symbol.
getRelatedSynsets(synset, pointerSymbol)
synset |
Basic synset. |
pointerSymbol |
A symbol indicating the type of the related synsets. An overview is available at https://wordnet.princeton.edu/documentation/wnsearch3wn. |
A list of synsets.
Ingo Feinerer
M. Wallace (2007). Jawbone Java WordNet API. https://sites.google.com/site/mfwallace/jawbone
getSynsets
if(initDict()) {
filter <- getTermFilter("ExactMatchFilter", "hot", TRUE)
terms <- getIndexTerms("ADJECTIVE", 5, filter)
synsets <- getSynsets(terms[[1]])
related <- getRelatedSynsets(synsets[[1]], "!")
sapply(related, getWord)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.