isFounder(GeneticsPed)
isFounder()所属R语言包:GeneticsPed
Founder and non-founder individuals in the pedigree
在谱系的创始人和非创始人个人
译者:生物统计家园网 机器人LoveR
描述----------Description----------
isFounder classifies individuals in the pedigree as founders (base) or non-founders (non-base individuals).
isFounder列为创始人(碱基)或创始人(非基本个人)的谱系中的个人。
用法----------Usage----------
isFounder(x, col=attr(x, ".ascendant"))
参数----------Arguments----------
参数:x
pedigree object
系谱对象
参数:col
character, which columns should be checked, see examples
字符,应检查哪些列,看到的例子
Details
详情----------Details----------
By definition founders do not have any known ascendants, while the opossite is the case for non-founders i.e. they have at least one known ascendant.
由定义创始人没有任何已知的长辈,而的opossite的情况下,他们至少有一个著名的方兴未艾,非创始人即。
FIXME: any relation with founderGeneSet in GeneticsBase
FIXME:为任何与founderGeneSet的在GeneticsBase关系
值----------Value----------
Boolean vector.
布尔向量。
作者(S)----------Author(s)----------
Gregor Gorjanc
参见----------See Also----------
Pedigree
Pedigree
举例----------Examples----------
ped <- generatePedigree(nId=5)
isFounder(ped)
## Based only on fathers[#的基础,只有在父亲]
isFounder(ped, col=c("father"))
## Works also only on a part of a pedigree[#工程也只有一个谱系的一部分]
isFounder(ped[1:5, ])
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|