getSynonyms(wordnet)
getSynonyms()所属R语言包:wordnet
Get Synonyms for an Index Term
获取一个索引词的同义词
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Get synonyms for a given index term.
获取对于一个给定的索引词的同义词。
用法----------Usage----------
getSynonyms(indexterm)
参数----------Arguments----------
参数:indexterm
The input index term.
的输入索引词。
值----------Value----------
A character vector holding the synonyms for the given index term.
字符向量给定的索引词的同义词。
(作者)----------Author(s)----------
Ingo Feinerer
参考文献----------References----------
M. Wallace (2007). Jawbone Java WordNet API. http://mfwallace.googlepages.com/jawbone.html
参见----------See Also----------
getIndexTerms
getIndexTerms
实例----------Examples----------
if(initDict()) {
filter <- getTermFilter("ExactMatchFilter", "company", TRUE)
terms <- getIndexTerms("NOUN", 5, filter)
getSynonyms(terms[[1]])
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|