generateExprVal.method.avgdiff(affy)
generateExprVal.method.avgdiff()所属R语言包:affy
Generate an expression value from the probes informations
从探针的信息生成表达式的值
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generate an expression from the probes
从探针产生的表达
用法----------Usage----------
generateExprVal.method.avgdiff(probes, ...)
generateExprVal.method.medianpolish(probes, ...)
generateExprVal.method.liwong(probes, ...)
generateExprVal.method.mas(probes, ...)
参数----------Arguments----------
参数:probes
a matrix of probe intensities with rows representing probes and columns representing samples. Usually pm(probeset) where probeset is a of class ProbeSet.
与代表占样本的探针和列的行矩阵探针强度。一般pm(probeset)其中probeset类ProbeSet。
参数:...
extra arguments to pass to the respective function.
额外的参数传递给各自的功能。
值----------Value----------
A list containing entries:
一个包含条目的列表:
参数:exprs
The expression values.
表达式的值。
参数:se.exprs
The standard error estimate.
标准误差估计。
参见----------See Also----------
generateExprSet-methods, generateExprVal.method.playerout, fit.li.wong
generateExprSet-methods,generateExprVal.method.playerout,fit.li.wong
举例----------Examples----------
data(SpikeIn) ##SpikeIn is a ProbeSets[#SpikeIn是1 ProbeSets]
probes <- pm(SpikeIn)
avgdiff <- generateExprVal.method.avgdiff(probes)
medianpolish <- generateExprVal.method.medianpolish(probes)
liwong <- generateExprVal.method.liwong(probes)
playerout <- generateExprVal.method.playerout(probes)
mas <- generateExprVal.method.mas(probes)
concentrations <- as.numeric(sampleNames(SpikeIn))
plot(concentrations,avgdiff$exprs,log="xy",ylim=c(50,10000),pch="a",type="b")
points(concentrations,2^medianpolish$exprs,pch="m",col=2,type="b",lty=2)
points(concentrations,liwong$exprs,pch="l",col=3,type="b",lty=3)
points(concentrations,playerout$exprs,pch="p",col=4,type="b",lty=4)
points(concentrations,mas$exprs,pch="p",col=4,type="b",lty=4)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|