transform.ProbeSet(affypdnn)
transform.ProbeSet()所属R语言包:affypdnn
A function to transform a ProbeSet
函数变换ProbeSet的
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A function to transform the PMs and MMs in a ProbeSet.
函数变换在ProbeSet PMS和MMS。
用法----------Usage----------
## S3 method for class 'ProbeSet'
transform(`_data`, fun = I, ...)
参数----------Arguments----------
参数:_data
object of ProbeSet-class.
对象ProbeSet-class。
参数:fun
a function. The identity function by default.
一个函数。默认情况下,身份的功能。
参数:...
optional arguments for fun.
fun可选参数。
Details
详情----------Details----------
The function fun is applied to the slots pm and mm. The function vsnh in the package vsn is a recommended argument for fun.
的功能fun插槽pm和mm。函数vsnh包vsn是fun推荐的论点。
值----------Value----------
An object of class ProbeSet.
对象类ProbeSet。
注意----------Note----------
This function should make to the package affy for the version 1.4.x.
此功能应该affy版本1.4.x.包
作者(S)----------Author(s)----------
Laurent
举例----------Examples----------
library(affydata)
data(Dilution)
ppset.name <- sample(featureNames(Dilution), 1)
ppset <- probeset(Dilution, ppset.name)[[1]]
ppset.log <- transform(ppset, fun=log)
par(mfrow=c(1,2))
plot(ppset)
plot(ppset.log)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|