estimateNumPerm(sigPathway)
estimateNumPerm()所属R语言包:sigPathway
Compute the Number of Unique Permutations for a Phenotype Vector
独特的排列计算的表型向量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Computes the number of unique permutations based on a vector of phenotypes and the number of groups.
计算的独特排列的基础上的表型和数量组向量的数量。
用法----------Usage----------
estimateNumPerm(phenotype, ngroups)
参数----------Arguments----------
参数:phenotype
a numeric (or character if ngroups >= 2) vector indicating the phenotype
一个数字(或字符,如果ngroups> = 2)向量表示的表型
参数:ngroups
an integer indicating the number of groups in the phenotype
一个整数,指示表型组
Details
详情----------Details----------
This function calculates the number of unique permutations based on the given phenotype and the number of groups present in the phenotype. This function is used internally in sigPathway and attempts to avoid numeric overflow associated with multiplying out large factorials.
此函数计算在给定的表型和表型组的数量为基础的独特排列。此功能用于sigPathway,并尝试在内部,以避免乘大阶乘相关的数值溢出。
值----------Value----------
A numeric with length 1.
一个长度为1的数字。
作者(S)----------Author(s)----------
Weil Lai
举例----------Examples----------
## One group: continuous observations[#一组连续观测]
ptype1 <- c(24,25,17,26,25,16,14,17,12,15,19,20)
print(estimateNumPerm(ptype1, 1))
## Two groups[#两组]
ptype2 <- c(0,1,1,0,1,0,1)
print(estimateNumPerm(ptype2, 2))
## Three groups[#三组]
ptype3a <- c(2,0,1,2,0,1,2,0,0,1,1,2)
print(estimateNumPerm(ptype3a, 3))
ptype3b <- c("Banana","Apple","Lemon","Lemon","Lemon",
"Apple","Lemon","Banana","Banana")
print(estimateNumPerm(ptype3b, 3))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|