getLemma(wordnet)
getLemma()所属R语言包:wordnet
Get Index Term Lemma
指数术语引理
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Retrieve the lemma (i.e., word) of an index term.
检索索引项的引理(即字)。
用法----------Usage----------
getLemma(indexterm)
参数----------Arguments----------
参数:indexterm
The index term whose lemma is returned.
返回的索引项的引理。
值----------Value----------
A character vector holding the index term lemma.
一个字符值保持指数术语引理的。
(作者)----------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("StartsWithFilter", "car", TRUE)
terms <- getIndexTerms("NOUN", 5, filter)
sapply(terms, getLemma)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|