getWord(wordnet)
getWord()所属R语言包:wordnet
Get Synset Word
同义集字
译者:生物统计家园网 机器人LoveR
描述----------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
getSynsets
实例----------Examples----------
if(initDict()) {
filter <- getTermFilter("ExactMatchFilter", "hot", TRUE)
terms <- getIndexTerms("ADJECTIVE", 5, filter)
synsets <- getSynsets(terms[[1]])
related <- getRelatedSynsets(synsets[[1]], "!")
sapply(related, getWord)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|